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