rise-and-swine/Assets/Scripts/Assembly-CSharp/PulseButtonEvent.cs
2023-02-25 23:04:03 -05:00

12 lines
247 B
C#

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;
}