From c2107dff1aa7933fa4a387d80a35122f199ee4e1 Mon Sep 17 00:00:00 2001 From: Mikhail <99481254+DCFApixels@users.noreply.github.com> Date: Mon, 24 Apr 2023 16:48:46 +0800 Subject: [PATCH] update --- src/Attributes/QueryAttributes.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Attributes/QueryAttributes.cs b/src/Attributes/QueryAttributes.cs index 8f98e53..c68b491 100644 --- a/src/Attributes/QueryAttributes.cs +++ b/src/Attributes/QueryAttributes.cs @@ -4,8 +4,9 @@ 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 { } + [AttributeUsage(AttributeTargets.Field, Inherited = false, AllowMultiple = false)] + public sealed class OptAttribute : Attribute { } }