From e98abbecac33d0677a660e5df56611956059c158 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bokros=20B=C3=A1lint?= Date: Sat, 7 May 2016 14:06:09 +0200 Subject: [PATCH] Added FlowOfTime init in Game --- cicaprojekt/Game.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cicaprojekt/Game.java b/cicaprojekt/Game.java index 14943bc..f4bd744 100644 --- a/cicaprojekt/Game.java +++ b/cicaprojekt/Game.java @@ -18,6 +18,7 @@ public class Game { public Game() { dungeon = new Dungeon(); random = new Random(); + flowoftime = new FlowOfTime(); } public void allZPMsCollected() { @@ -31,6 +32,8 @@ public class Game { oneill = new Player("O'Neill", players.get("oneill"), getRandomDirection()); jaffa = new Player("Jaffa", players.get("jaffa"), getRandomDirection()); replicator = new PlayerBase("Replicator", players.get("replicator"), getRandomDirection()); + + flowoftime.start(); } private Direction getRandomDirection() {