Files
CortexCore a379dc5cd3 1
2024-05-13 01:28:33 +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