10 lines
178 B
C#
10 lines
178 B
C#
|
public struct GameStateChanged : EventManager.Event
|
||
|
{
|
||
|
public LevelManager.GameState state;
|
||
|
|
||
|
public GameStateChanged(LevelManager.GameState state)
|
||
|
{
|
||
|
this.state = state;
|
||
|
}
|
||
|
}
|