diff --git a/src/Debug/Attributes/DebugNameAttribute.cs b/src/Debug/Attributes/DebugNameAttribute.cs new file mode 100644 index 0000000..c0584fc --- /dev/null +++ b/src/Debug/Attributes/DebugNameAttribute.cs @@ -0,0 +1,14 @@ +using System; + +namespace DCFApixels.DragonECS +{ + [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct, Inherited = false, AllowMultiple = true)] + public sealed class DebugNameAttribute : Attribute + { + public readonly string name; + public DebugNameAttribute(string name) + { + this.name = name; + } + } +}