Merge branch 'master' into game
This commit is contained in:
@ -21,8 +21,8 @@ public class Game {
|
||||
flowoftime = new FlowOfTime();
|
||||
}
|
||||
|
||||
public void allZPMsCollected() {
|
||||
this.stopGame();
|
||||
public void allZPMsCollected(GameoverCause cause) {
|
||||
this.stopGame(cause);
|
||||
}
|
||||
|
||||
public void startGame(File dungeonFile) throws IOException {
|
||||
@ -40,6 +40,6 @@ public class Game {
|
||||
return Direction.values()[random.nextInt(Direction.values().length)];
|
||||
}
|
||||
|
||||
public void stopGame() {
|
||||
public void stopGame(GameoverCause cause) {
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user