fix conflict

This commit is contained in:
MSI 2025-04-18 15:32:21 +02:00
commit 43b29cc73b
1 changed files with 10 additions and 2 deletions

View File

@ -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() {