Merge branch 'master' of https://gitarero.ecam.fr/noa.four/OOP_1B2_Project.git
This commit is contained in:
commit
f57387cf6e
|
|
@ -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) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue