canto/Assets/Scripts/System/Attributes/ButtonAttribute.cs
2025-08-14 19:11:32 -04:00

16 lines
366 B
C#

using System;
using UnityEngine;
namespace KitsuneCafe.Sys.Attributes
{
[AttributeUsage(AttributeTargets.Method, Inherited = false, AllowMultiple = false)]
public sealed class ButtonAttribute : PropertyAttribute
{
public readonly string Label;
public ButtonAttribute(string label)
{
Label = label;
}
}
}