SquareDash/Library/PackageCache/com.unity.test-framework@1.3.9/UnityEditor.TestRunner/TestLaunchers/Helpers/PostbuildCleanupAttributeFinder.cs
kingjuulian06 0efb85038a Arbeit 2
2023-11-21 22:03:49 +01:00

11 lines
317 B
C#

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