Beispiel #1
0
 public void PlayerInventory(Inventory inventory)
 {
     inventory.CheckCash(inventory);
     inventory.DisplayInventory();
     Console.ReadLine();
     Console.Clear();
 }
Beispiel #2
0
 public void BuyItems(Store store, Inventory inventory)
 {
     store.BuyLemons(inventory);
     store.BuySugar(inventory);
     store.BuyIce(inventory);
     store.BuyCups(inventory);
     Console.Clear();
     inventory.DisplayInventory();
     inventory.CheckCash(inventory);
     Console.Clear();
 }