Esempio n. 1
0
 public Game(Board board, Circuit<Player> players, FinishSquare finish)
 {
     this.board = board;
     this.players = players;
     currentPlayer = players.peek();
     _finishSquare = finish;
 }