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

View File

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