rimworld-animation-studio/Library/PackageCache/com.unity.test-framework@1.1.22/UnityEditor.TestRunner/TestLaunchers/PostbuildCleanupAttributeFinder.cs
2022-09-13 00:36:34 -05:00

9 lines
303 B
C#

using UnityEngine.TestTools;
namespace UnityEditor.TestTools.TestRunner
{
internal class PostbuildCleanupAttributeFinder : AttributeFinderBase<IPostBuildCleanup, PostBuildCleanupAttribute>
{
public PostbuildCleanupAttributeFinder() : base(attribute => attribute.TargetClass) {}
}
}