added echoes to the Game class

This commit is contained in:
Kjistóf 2016-03-29 00:47:36 +02:00
parent 96e2888d59
commit 30251f6d88
1 changed files with 20 additions and 5 deletions

View File

@ -5,12 +5,27 @@ public class Game {
private Dungeon dungeon;
private FlowOfTime flowoftime;
public void allZPMsCollected() {}
public void startGame() {}
public void stopGame() {}
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() {
Menu.addTab();
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) {}
}