public AdventureGame() { _players = new List <AdventurePlayer>(); _commandHandler = new CommandHandler(this); Dungeon = new Dungeon(this, new ColossalCave()); MonsterManagers.Add(new DwarfManager(Dungeon.Locations)); MonsterManagers.Add(new PirateManager(Dungeon.Locations)); }
public AdventureGame(IDungeon dungeon) { _players = new List <AdventurePlayer>(); _commandHandler = new CommandHandler(this); Dungeon = dungeon; }
public AdventureGame() { _players = new List <AdventurePlayer>(); _commandHandler = new CommandHandler(this); Dungeon = new Dungeon(this, new ColossalCave()); }