removed unnecessary lines of code

This commit is contained in:
Kjistóf 2016-05-13 22:16:54 +02:00
parent 1974396f61
commit 070c1f8720

View File

@ -5,7 +5,6 @@ import java.awt.*;
import java.io.File;
import java.io.IOException;
import java.util.Map;
import java.util.Random;
public class Game {
private Player oneill;
@ -14,16 +13,13 @@ public class Game {
private PlayerBase replicator;
private Dungeon dungeon;
private Random random;
private FlowOfTime flowoftime;
private Display display;
public static Game instance = new Game();
private Game() {
random = new Random();
}
private Game() {}
public void setDungeon(Dungeon dungeon) {
this.dungeon = dungeon;