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