mirror of
https://github.com/DCFApixels/DragonECS-AutoInjections.git
synced 2025-09-18 21:35:07 +08:00
12 lines
335 B
C#
12 lines
335 B
C#
![]() |
using System;
|
|||
|
|
|||
|
namespace DCFApixels.DragonECS
|
|||
|
{
|
|||
|
[AttributeUsage(AttributeTargets.Field, Inherited = false, AllowMultiple = false)]
|
|||
|
public sealed class IncAttribute : Attribute { }
|
|||
|
|
|||
|
[AttributeUsage(AttributeTargets.Field, Inherited = false, AllowMultiple = false)]
|
|||
|
public sealed class ExcAttribute : Attribute { }
|
|||
|
}
|
|||
|
|