コード例 #1
0
 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();
 }