public Location()
 {
     exitCollection = new ExitCollection();
     items          = new Inventory();
 }
示例#2
0
 public Location()
 {
     this.exitCollection = new ExitCollection();
     this.items = new Inventory();
     this.characterList = new NonPlayerCharacterCollection();
 }