This repository has been archived on 2024-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
snakeinabox/Assets/NaughtyAttributes/Scripts/Core/DrawerAttributes/ButtonAttribute.cs
2020-07-09 11:41:01 -07:00

15 lines
348 B
C#

using System;
namespace NaughtyAttributes
{
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false, Inherited = true)]
public class ButtonAttribute : DrawerAttribute
{
public string Text { get; private set; }
public ButtonAttribute(string text = null)
{
this.Text = text;
}
}
}