コード例 #1
0
ファイル: Player.cs プロジェクト: jpx/blazera
 public Player()
     : base()
 {
     Inventory = new Inventory();
 }
コード例 #2
0
ファイル: Player.cs プロジェクト: jpx/blazera
 public Player(Player copy)
     : base(copy)
 {
     Inventory = new Inventory(copy.Inventory);
 }
コード例 #3
0
ファイル: Inventory.cs プロジェクト: eickegao/Blazera
 public Inventory(Inventory copy)
 {
     Items = new Dictionary<Item, ItemQuantity>(copy.Items);
 }