feat: add undo

This commit is contained in:
2025-04-05 10:53:41 +02:00
parent 8c2c6946d7
commit 2ec7be27ca
9 changed files with 71 additions and 11 deletions

View File

@@ -57,10 +57,11 @@ public class MoveCommand extends PlayerCommand {
}
@Override
public void undo(Game game, OutputSystem outputSystem) {
public CommandResult undo(Game game, OutputSystem outputSystem) {
final ChessBoard board = game.getBoard();
board.undoMove(move, deadPiece);
return CommandResult.Moved;
}
@Override