/*
* Author: Nikolay Dvurechensky
* Site: https://www.dvurechensky.pro/
* Gmail: dvurechenskysoft@gmail.com
* Last Updated: 12 мая 2025 05:48:46
* Version: 1.0.4
*/
using System;
namespace CustomAttributes
{
///
/// Нажатие на кнопку в редакторе
///
[AttributeUsage(AttributeTargets.Method)]
public class EditorButtonAttribute : Attribute
{
///
/// Button text
///
public string name;
///
/// Add Button to Inspector
///
/// Button text
public EditorButtonAttribute(string name)
{
this.name = name;
}
}
}