This commit is contained in:
Jerome ALTARIBA 2025-04-18 16:52:08 +02:00
commit 9eb68d4715
1 changed files with 12 additions and 1 deletions

View File

@ -15,7 +15,18 @@ public class Move {
this.capturedPiece = capturedPiece;
}
public Piece getPiece() {
return piece;
}
public int getFromX() {
return fromX;
}
public int getFromY() {
return fromY;
}
public int getToX() {
return toX;
}
public int getToY() {
return toY;
}
}