9 lines
142 B
C#
9 lines
142 B
C#
public struct GameTimePaused : EventManager.Event
|
|
{
|
|
public bool paused;
|
|
|
|
public GameTimePaused(bool paused)
|
|
{
|
|
this.paused = paused;
|
|
}
|
|
}
|