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