mirror of
https://github.com/DCFApixels/DragonECS.git
synced 2025-09-19 18:54:35 +08:00
12 lines
414 B
C#
12 lines
414 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;
|
|
}
|
|
}
|