public Game() { playing = false; parser = new Parser(new CommandWords()); player = Characters.Player.getInstance(); createWorld(); }
public Room(string tag) { exits = new Dictionary <string, Room>(); this.tag = tag; itemInRoom = new List <IGoods.IGoods>(); VictoryCondition = false; Encounter = false; player = Characters.Player.getInstance(); }