A game about forced loneliness, made by TACStudios
1using System; 2 3namespace UnityEditor.TestTools.TestRunner.TestRun.Tasks 4{ 5 internal abstract class FileCleanupVerifierTaskBase : TestTaskBase 6 { 7 internal Func<string[]> GetAllAssetPathsAction = AssetDatabase.GetAllAssetPaths; 8 9 protected string[] GetAllFilesInAssetsDirectory() 10 { 11 return GetAllAssetPathsAction(); 12 } 13 } 14}