Display display added to Game.java

This commit is contained in:
ericnerdo 2016-05-07 14:24:23 +02:00
parent 6fb3f4fb17
commit cc5f21ab78
1 changed files with 3 additions and 0 deletions

View File

@ -15,10 +15,13 @@ public class Game {
private Random random;
private FlowOfTime flowoftime;
private Display display;
public Game() {
dungeon = new Dungeon();
random = new Random();
flowoftime = new FlowOfTime();
display = new Display();
}
public void allZPMsCollected(GameoverCause cause) {