rise-and-swine/Assets/Scripts/Assembly-CSharp/PulseButtonEvent.cs

13 lines
247 B
C#
Raw Normal View History

2023-02-25 23:04:03 -05:00
public struct PulseButtonEvent : EventManager.Event
{
public PulseButtonEvent(UIEvent.Type buttonEvent, bool pulse = true)
{
this.buttonEvent = buttonEvent;
this.pulse = pulse;
}
public UIEvent.Type buttonEvent;
public bool pulse;
}