mirror of
https://github.com/inf112-v20/Fiasko.git
synced 2025-02-01 07:39:35 +01:00
Legger til manglende kommentarer for konstruksjonsfunksjoner
This commit is contained in:
parent
47facbabd6
commit
061b8edc06
@ -23,6 +23,10 @@ public class RoboRallyGame implements IDrawableGame {
|
||||
private List<BoardElementContainer<Tile>> fastConveyorBelts;
|
||||
private List<Player> playerList;
|
||||
|
||||
/**
|
||||
* Instantiates a new robo rally game
|
||||
* @param debug Whether to start the game in debugging mode
|
||||
*/
|
||||
public RoboRallyGame(boolean debug) {
|
||||
if (debug) {
|
||||
initializeDebugMode();
|
||||
@ -31,6 +35,9 @@ public class RoboRallyGame implements IDrawableGame {
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Instantiates a new robo rally game
|
||||
*/
|
||||
public RoboRallyGame() {
|
||||
initializeGame();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user