Exemple #1
0
 public Player()
     : base()
 {
     Inventory = new Inventory();
 }
Exemple #2
0
 public Player(Player copy)
     : base(copy)
 {
     Inventory = new Inventory(copy.Inventory);
 }
Exemple #3
0
 public Inventory(Inventory copy)
 {
     Items = new Dictionary<Item, ItemQuantity>(copy.Items);
 }