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