Example #1
0
 public GameManager(int aWidth, int aHeight)
 {
     _gameField = new GameField(aWidth, aHeight);
     _gameOver  = false;
 }
Example #2
0
 public void SetField(GameField aGameField)
 {
     _gameField = aGameField;
 }