Merge branch 'master' of
https://gitarero.ecam.fr/valentine.giral/OOP_3B3_Project.git
This commit is contained in:
commit
23758f25e5
|
|
@ -412,6 +412,7 @@ public class Board {
|
||||||
this.highlightedPositions = new ArrayList<>();
|
this.highlightedPositions = new ArrayList<>();
|
||||||
for (int[] pos : highlightedPositions) {
|
for (int[] pos : highlightedPositions) {
|
||||||
|
|
||||||
|
//TO BE DONE
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
package backend;
|
package backend;
|
||||||
|
|
||||||
public class MoveRecord {
|
public class MoveRecord {
|
||||||
// records the piece last move
|
//record the piece last move
|
||||||
Piece movedPiece;
|
Piece movedPiece;
|
||||||
Piece capturedPiece;
|
Piece capturedPiece;
|
||||||
int fromX, fromY, toX, toY;
|
int fromX, fromY, toX, toY;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue