using System; namespace UnityAtoms { /// /// Specify a texture name from your assets which you want to be assigned as an icon to the MonoScript. /// [AttributeUsage(AttributeTargets.All, Inherited = true, AllowMultiple = false)] public class EditorIcon : Attribute { public EditorIcon(string name) { Name = name; } public string Name { get; set; } } }