public Location()
 {
     exitCollection = new ExitCollection();
     items          = new Inventory();
 }
예제 #2
0
파일: Location.cs 프로젝트: Kais120/7201a2
 public Location()
 {
     this.exitCollection = new ExitCollection();
     this.items = new Inventory();
     this.characterList = new NonPlayerCharacterCollection();
 }