added GameoverCause to function sigtanures in Game
This commit is contained in:
parent
e3d720f611
commit
7c3cbee3cc
@ -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) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user