TODOs und Game

Ein paar TODOs für die Organisation eingefügt und an der Klasse Game gearbeitet, hauptsächlich an der Methode giveGuess()
This commit is contained in:
2022-03-18 19:09:19 +01:00
parent 3fc4f6dfca
commit 02d6252537
4 changed files with 114 additions and 26 deletions

View File

@@ -13,7 +13,7 @@ public class User {
private Game game;
public User (String pConnectionID){
connectionID =pConnectionID;
connectionID = pConnectionID;
game = new Game();
}
@@ -45,9 +45,6 @@ public class User {
return state;
}
public void setWins(int wins) {
this.wins = wins;
}