DragonECS-AutoInjections/src/AutoRunners/BindWithRunnerAttribute.cs
2025-03-14 16:53:33 +08:00

14 lines
341 B
C#

#if DISABLE_DEBUG
#undef DEBUG
#endif
using System;
[AttributeUsage(AttributeTargets.Interface, Inherited = false, AllowMultiple = false)]
public sealed class BindWithRunnerAttribute : Attribute
{
public readonly Type runnerType;
public BindWithRunnerAttribute(Type runnerType)
{
this.runnerType = runnerType;
}
}