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