public Player() : base() { Inventory = new Inventory(); }
public Player(Player copy) : base(copy) { Inventory = new Inventory(copy.Inventory); }
public Inventory(Inventory copy) { Items = new Dictionary<Item, ItemQuantity>(copy.Items); }