Games have names now

This commit is contained in:
Seraina 2022-04-15 16:40:26 +02:00
parent 85fca301ff
commit 5b0004f8ff

View File

@ -26,6 +26,8 @@ public class Game implements Runnable {
protected boolean isDay = false; //false means it is night, it is night by default
protected VoteHandler voteHandler = new VoteHandler();
private Lobby lobby;
private String name;
private static int nameCounter = 0;
//TODO: Figure out where Day/Night game state is saved maybe think about a game state class or smt.
/**
* Constructs a Game instance where:
@ -41,6 +43,8 @@ public class Game implements Runnable {
this.nrOfUsers = nrOfUsers;
this.gameState = new GameState(nrOfPlayers, nrOfGhosts, nrOfUsers);
this.lobby = lobby;
nameCounter++;
this.name = "Game-" + nameCounter;
}
public GameState getGameState() {