added GameoverCause to function sigtanures in Game

This commit is contained in:
Kjistóf 2016-05-07 13:43:26 +02:00
parent e3d720f611
commit 7c3cbee3cc
1 changed files with 3 additions and 3 deletions

View File

@ -9,13 +9,13 @@ public class Game {
public static void main(String[] args) {
}
public void allZPMsCollected() {
this.stopGame();
public void allZPMsCollected(GameoverCause cause) {
this.stopGame(cause);
}
public void startGame() {
}
public void stopGame() {
public void stopGame(GameoverCause cause) {
}
}