Merge branch 'master' of

https://gitarero.ecam.fr/valentine.giral/OOP_3B3_Project.git
This commit is contained in:
Valentine GIRAL 2025-05-09 14:13:40 +02:00
commit 23758f25e5
2 changed files with 3 additions and 2 deletions

View File

@ -412,6 +412,7 @@ public class Board {
this.highlightedPositions = new ArrayList<>();
for (int[] pos : highlightedPositions) {
//TO BE DONE
}
}

View File

@ -1,7 +1,7 @@
package backend;
public class MoveRecord {
// records the piece last move
//record the piece last move
Piece movedPiece;
Piece capturedPiece;
int fromX, fromY, toX, toY;