added the getter for the forcestartGame value in teh corresponding message

This commit is contained in:
Fleischer Hanno
2024-12-01 16:04:55 +01:00
parent 772c7a51e0
commit ba5b9dc4b4
5 changed files with 13 additions and 0 deletions

View File

@@ -23,6 +23,15 @@ public StartGameMessage() {
forceStartGame = false;
}
/**
* Gets whether the game should be force started.
*
* @return whether the game should be force started
*/
public boolean isForceStartGame() {
return forceStartGame;
}
/**
* Returns a string representation of this message.
*