reformatted code

This commit is contained in:
Bokros Bálint
2016-04-24 23:01:34 +02:00
parent d0d656452c
commit 1ab13398bb
19 changed files with 365 additions and 382 deletions

View File

@ -1,20 +1,21 @@
package cicaprojekt;
public class Game {
private Player oneill;
private Dungeon dungeon;
private FlowOfTime flowoftime;
private Player oneill;
private Dungeon dungeon;
private FlowOfTime flowoftime;
public void allZPMsCollected() {
this.stopGame();
}
public void startGame() {
}
public void stopGame() {
}
public static void main(String[] args) {
}
public static void main(String[] args) {}
public void allZPMsCollected() {
this.stopGame();
}
public void startGame() {
}
public void stopGame() {
}
}