13 lines
288 B
C#
13 lines
288 B
C#
|
public struct GameStateChanged : EventManager.Event
|
|||
|
{
|
|||
|
public GameStateChanged(LevelManager.GameState state, LevelManager.GameState prevState)
|
|||
|
{
|
|||
|
this.state = state;
|
|||
|
this.prevState = prevState;
|
|||
|
}
|
|||
|
|
|||
|
public LevelManager.GameState state;
|
|||
|
|
|||
|
public LevelManager.GameState prevState;
|
|||
|
}
|