DragonECS-AutoInjections/src/AutoRunners/BindWithRunnerAttribute.cs
2024-03-02 18:33:49 +08:00

10 lines
302 B
C#

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;
}
}