DragonECS-AutoInjections/src/AutoRunners/BindWithRunnerAttribute.cs

10 lines
302 B
C#
Raw Normal View History

2024-02-25 17:36:33 +08:00
using System;
[AttributeUsage(AttributeTargets.Interface, Inherited = false, AllowMultiple = false)]
2024-03-02 18:33:49 +08:00
public sealed class BindWithRunnerAttribute : Attribute
2024-02-25 17:36:33 +08:00
{
public readonly Type runnerType;
public BindWithRunnerAttribute(Type runnerType)
{
this.runnerType = runnerType;
}
}