bad-piggies-0.1.3-porting/Assets/Scripts/Assembly-CSharp/GameTimePaused.cs
2024-02-24 22:40:44 -05:00

9 lines
142 B
C#

public struct GameTimePaused : EventManager.Event
{
public bool paused;
public GameTimePaused(bool paused)
{
this.paused = paused;
}
}