mirror of
https://github.com/DCFApixels/DragonECS.git
synced 2025-09-18 01:44:35 +08:00
15 lines
443 B
C#
15 lines
443 B
C#
using System;
|
|
|
|
namespace DCFApixels.DragonECS
|
|
{
|
|
[AttributeUsage(AttributeTargets.Struct | AttributeTargets.Class | AttributeTargets.Interface, Inherited = false, AllowMultiple = false)]
|
|
public sealed class MetaDescriptionAttribute : EcsMetaAttribute
|
|
{
|
|
public readonly string description;
|
|
public MetaDescriptionAttribute(string description)
|
|
{
|
|
this.description = description;
|
|
}
|
|
}
|
|
}
|