private void SellItem(Item item) { if (item != null) { //player.Gold += actor.Cost / 4; player.Inventory.Remove(item); availableItems.Add(item); } }
private void BuyItem(Item item) { if (item != null) { //player.Gold -= actor.Cost; player.Inventory.Add(item); availableItems.Remove(item); } }