暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ICustomScriptAssemblyMappingFinder.cs 682B

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