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