예제 #1
0
 public Game()
 {
     playing = false;
     parser  = new Parser(new CommandWords());
     player  = Characters.Player.getInstance();
     createWorld();
 }
예제 #2
0
 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();
 }