Exemplo n.º 1
0
 public GameData(GameState state, InputHandler inputHandler)
 {
     this.State         = state;
     this.Map           = new List <Structure>();
     this.Players       = new List <Player>();
     this.Food          = new List <Food>();
     this._bombMediator = new BombMediator(this);
     this.InputHandler  = inputHandler;
 }
Exemplo n.º 2
0
 public ExplosionHandler(BombMediator mediator)
 {
     this._mediator = mediator;
 }