return to work

This commit is contained in:
MSI 2025-05-06 13:34:33 +02:00
parent e7726a3283
commit a1a0b9e9a9
1 changed files with 2 additions and 1 deletions

View File

@ -12,7 +12,7 @@ public class Move {
this.fromY = fromY;
this.toX = toX;
this.toY = toY;
this.capturedPiece = capturedPiece;
//this.capturedPiece = capturedPiece;
}
public Piece getPiece() {
return piece;
@ -39,4 +39,5 @@ public class Move {
return piece + ":("+ fromX + "," + fromY + ")-("+ toX + "," + toY + ")" + ( capturedPiece != null? "capturing "+ capturedPiece: "");
}
// remove commit message
// return to work
}