DragonECS-AutoInjections/src/Attributes/QueryAttributes.cs

12 lines
335 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 { }
}