merge dev into test #33

Merged
j23f0712 merged 36 commits from development into dev/test 2024-12-02 17:37:00 +01:00
50 changed files with 1214 additions and 374 deletions
Showing only changes of commit 1bcb73cff7 - Show all commits

View File

@@ -43,10 +43,23 @@ public PlayerData(Color color) {
}
}
/**
* Constructor.
*/
private PlayerData() {
homeNodes = null;
waitingArea = null;
pieces = null;
homeNodes = new HomeNode[4];
waitingArea = new Piece[4];
pieces = new Piece[4];
}
/**
* This method will be used to check if the player is finished.
* ToDo: Currently return always false. Implement logic!
*
* @return true or false.
*/
public boolean isFinished() {
return false;
}
/**