bad-piggies-0.1.3-porting/Assets/Scripts/Assembly-CSharp/GameTimePaused.cs

10 lines
142 B
C#
Raw Normal View History

2024-02-24 22:40:44 -05:00
public struct GameTimePaused : EventManager.Event
{
public bool paused;
public GameTimePaused(bool paused)
{
this.paused = paused;
}
}