Beispiel #1
0
 private void ShowGameWithBoard(Game game, int aliveCellsInGame) {
     var board = new Board();
     board.ShowBoard(game.Boards[InGameMenu.SelectedBoard]);
     text.ShowGameStats(game, aliveCellsInGame);
 }
Beispiel #2
0
 private void SelectBoard(Game game) {
     var board = new Board();
     SelectedBoard = InputBoardNumber();
     board.ShowSelectedBoard(game);
 }