mirror of
https://github.com/DCFApixels/DragonECS-AutoInjections.git
synced 2025-09-18 21:35:07 +08:00
10 lines
302 B
C#
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;
|
|
}
|
|
} |