Files
CortexCore 911c184a2a 1
2024-05-17 16:44:15 +08:00

21 lines
446 B
C#

#if GRIFFIN
using UnityEditor;
namespace Pinwheel.Griffin
{
public class GGenericMenuItem
{
public string Name { get; set; }
public bool IsOn { get; set; }
public GenericMenu.MenuFunction Action { get; set; }
public GGenericMenuItem(string name, bool isOn, GenericMenu.MenuFunction action)
{
Name = name;
IsOn = isOn;
Action = action;
}
}
}
#endif