This commit is contained in:
Jerome ALTARIBA 2025-04-18 16:14:00 +02:00
commit f57387cf6e
1 changed files with 8 additions and 0 deletions

View File

@ -1,5 +1,13 @@
package backend; package backend;
public class Move { public class Move {
private Piece piece;
private int fromX, fromY;
private int toX, toY;
private Piece capturedPiece;
public Move ( Piece piece, int fromX, int fromY, int toX, int toY, Piece captured) {
}
} }