WXGame/d2/Assets/Script/Tool/InspectorButtonAttribute.cs
2024-10-22 11:30:53 +08:00

16 lines
307 B
C#

using UnityEngine;
[System.AttributeUsage(System.AttributeTargets.Method)]
public class InspectorButtonAttribute : PropertyAttribute
{
public readonly string Name;
public InspectorButtonAttribute()
{
}
public InspectorButtonAttribute(string name)
{
Name = name;
}
}