Ejemplo n.º 1
0
 public void SellItems(Player player)
 {
     Console.Clear();
     UserInterface.DisplayStore();
     DisplayProducts();
     UserInterface.DisplayInventory();
     player.Inventory.DisplayCurrentInventory();
     player.DisplayCashFlow();
     player.BuyInventory(this);
     SellItems(player);
 }