DragonECS-AutoInjections/src/Attributes/QueryAttributes.cs

13 lines
474 B
C#
Raw Normal View History

2023-04-21 17:39:06 +08:00
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 { }
2023-04-24 16:48:46 +08:00
[AttributeUsage(AttributeTargets.Field, Inherited = false, AllowMultiple = false)]
public sealed class OptAttribute : Attribute { }
2023-04-21 17:39:06 +08:00
}