Files

11 lines
305 B
C#
Raw Permalink Normal View History

2025-06-27 23:27:49 +01:00
using System;
using UnityEngine.TestTools;
namespace UnityEditor.TestTools.TestRunner
{
internal class PrebuildSetupAttributeFinder : AttributeFinderBase<IPrebuildSetup, PrebuildSetupAttribute>
{
public PrebuildSetupAttributeFinder() : base(attribute => attribute.TargetClass) {}
}
}