Files
PixelJumperHero/Library/PackageCache/com.unity.test-framework@1.1.24/UnityEditor.TestRunner/TestLaunchers/PostbuildCleanupAttributeFinder.cs
2021-06-13 10:28:03 +02:00

10 lines
303 B
C#

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