fix gtTurnNumber and isTurnWhite ; now works correctly

This commit is contained in:
carol 2025-05-11 12:53:48 +02:00
parent 4908f3fc43
commit 22e014acee
1 changed files with 2 additions and 2 deletions

View File

@ -28,11 +28,11 @@ public class Board {
}
public int getTurnNumber() {
return 0;
return turnNumber;
}
public boolean isTurnWhite() {
return false;
return turnWhite;
}
public void setPiece(boolean isWhite, PieceType type, int x, int y) {