fix conflict
This commit is contained in:
commit
43b29cc73b
|
|
@ -1,13 +1,21 @@
|
|||
package backend;
|
||||
|
||||
public class Piece {
|
||||
|
||||
private int x;
|
||||
private int y;
|
||||
|
||||
public Piece(int xP, int yP) {
|
||||
x = xP;
|
||||
y = yP;
|
||||
}
|
||||
|
||||
public int getX() {
|
||||
return 0;
|
||||
return x;
|
||||
}
|
||||
|
||||
public int getY() {
|
||||
return 0;
|
||||
return y;
|
||||
}
|
||||
|
||||
public PieceType getType() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue