mirror of
https://github.com/DCFApixels/DragonECS.git
synced 2025-11-15 10:35:55 +08:00
15 lines
410 B
C#
15 lines
410 B
C#
using System;
|
|
|
|
namespace DCFApixels.DragonECS
|
|
{
|
|
[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct, Inherited = false, AllowMultiple = false)]
|
|
public sealed class DebugDescriptionAttribute : Attribute
|
|
{
|
|
public readonly string description;
|
|
public DebugDescriptionAttribute(string description)
|
|
{
|
|
this.description = description;
|
|
}
|
|
}
|
|
}
|