added echoes to the Game class
This commit is contained in:
parent
96e2888d59
commit
30251f6d88
@ -5,12 +5,27 @@ public class Game {
|
|||||||
private Dungeon dungeon;
|
private Dungeon dungeon;
|
||||||
private FlowOfTime flowoftime;
|
private FlowOfTime flowoftime;
|
||||||
|
|
||||||
public void allZPMsCollected() {}
|
public void allZPMsCollected() {
|
||||||
|
Menu.addTab();
|
||||||
|
System.out.println(">" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Game.allZPMsCollected()");
|
||||||
|
this.stopGame();
|
||||||
|
System.out.println("<" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Game.allZPMsCollected()");
|
||||||
|
Menu.removeTab();
|
||||||
|
}
|
||||||
|
|
||||||
public void startGame() {}
|
public void startGame() {
|
||||||
|
Menu.addTab();
|
||||||
public void stopGame() {}
|
System.out.println(">" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Game.startGame()");
|
||||||
|
System.out.println("<" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Game.startGame()");
|
||||||
|
Menu.removeTab();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void stopGame() {
|
||||||
|
Menu.addTab();
|
||||||
|
System.out.println(">" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Game.stopGame()");
|
||||||
|
System.out.println("<" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Game.stopGame()");
|
||||||
|
Menu.removeTab();
|
||||||
|
}
|
||||||
|
|
||||||
public static void main(String[] args) {}
|
public static void main(String[] args) {}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user