This commit is contained in:
User 2025-05-13 14:45:32 +02:00
commit 89e1c93a76
1 changed files with 0 additions and 10 deletions

View File

@ -14,7 +14,6 @@ public class Piece {
this.type = type;
}
public int getX() {
return x;
}
@ -23,15 +22,6 @@ public class Piece {
return y;
}
public void setX(int x) {
this.x = x;
}
public void setY(int y) {
this.y = y;
}
public PieceType getType() {
return type;