Пример #1
0
 /**
  * Returns the next saved move in the game.
  *
  * @return the next saved move in the game.
  */
 public Move getSavedMove() {
   SaveMove sMove = savedMoves.get(0);
   Move move = sMove.move();
   savedMoves.remove(0);
   return move;
 }