1234567891011121314151617181920 |
- using System;
- namespace UnityEngine.TestTools
- {
- [AttributeUsage(AttributeTargets.Assembly | AttributeTargets.Class | AttributeTargets.Method)]
- public class PrebuildSetupAttribute : Attribute
- {
- public PrebuildSetupAttribute(Type targetClass)
- {
- TargetClass = targetClass;
- }
- public PrebuildSetupAttribute(string targetClassName)
- {
- TargetClass = AttributeHelper.GetTargetClassFromName(targetClassName, typeof(IPrebuildSetup));
- }
- internal Type TargetClass { get; private set; }
- }
- }
|