Updated 'Game' class.

Updated the 'Game' class by setting the default value of 'host' attribute. In Addition, the 'isHost' method was added.
This commit is contained in:
Daniel Grigencha
2024-12-02 22:34:45 +01:00
parent 5910fcc701
commit 27f8af70f5

View File

@@ -43,7 +43,7 @@ public class Game {
private Die die;
// The host of this game
private int host;
private int host = -1;
// The color of the active player.
private Color activeColor;
@@ -200,6 +200,15 @@ public Piece getPieceThroughUUID(UUID pieceId) {
return null;
}
/**
* This method will be used to check if this client is the host for the game.
*
* @return true or false.
*/
public boolean isHost() {
return this.host != -1;
}
/**
* This method returns the dice modifier.
*