Files
Studio/Assets/Scripts/XED/ComponentSystem/ComponentAttribute.cs
2025-02-19 17:24:26 +09:00

10 lines
154 B
C#

using System;
namespace XED.ComponentSystem
{
[AttributeUsage(AttributeTargets.Field)]
public class ComponentAttribute : Attribute
{
}
}