A game about forced loneliness, made by TACStudios
1using System;
2
3namespace UnityEditor.TestTools.TestRunner.GUI.TestAssets
4{
5 /// <summary>
6 /// Provides mapping information from folder paths to their corresponding Custom Script Assembly scope.
7 /// </summary>
8 internal interface ICustomScriptAssemblyMappingFinder
9 {
10 /// <summary>
11 /// Finds the Custom Script Assembly associated with the provided folder path.
12 /// </summary>
13 /// <param name="folderPath">The folder path to check.</param>
14 /// <returns>The associated <see cref="ICustomScriptAssembly" />; null if none.</returns>
15 ICustomScriptAssembly FindCustomScriptAssemblyFromFolderPath(string folderPath);
16 }
17}