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