using System; namespace Golems.Attributes { /// /// Adds an Inspector Button which Invokes /// decorated methods /// [AttributeUsage(AttributeTargets.Method, Inherited = true, AllowMultiple = true)] public class Button : Attribute { public string Ident = ""; public Button() { } public Button(string ident) { Ident = ident; } } }