mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-24 00:58:59 -05:00
16 lines
318 B
C#
16 lines
318 B
C#
|
using System;
|
||
|
|
||
|
namespace UnityAtoms
|
||
|
{
|
||
|
[AttributeUsage(AttributeTargets.All, Inherited = true, AllowMultiple = false)]
|
||
|
public class ScriptIcon : Attribute
|
||
|
{
|
||
|
public ScriptIcon(string iconName)
|
||
|
{
|
||
|
IconName = iconName;
|
||
|
}
|
||
|
|
||
|
public string IconName { get; set; }
|
||
|
}
|
||
|
}
|