Exemplo n.º 1
0
 //Member Methods
 public void StartGame()
 {
     playerOne.GetPlayerName();
     User_Interface.DisplayMessage("Welcome To The Game: " + playerOne.name);
     weatherTodayResult = weatherToday.TodaysWeather();
     DisplayWeatherToday(weatherTodayResult);
     playerMoney            = money.DisplayMoneyInWallet();
     getSupplies            = buySupplies.BuyLemon();
     getSupplies            = buySupplies.BuyIce();
     getSupplies            = buySupplies.BuySuger();
     getSupplies            = buySupplies.BuyCup();
     pricePerCup            = chargePrice.InputPrice();
     numberOfCustomersToday = todaysCustomer.CustomersToday(weatherTodayResult);
     buyingCustomersWeather = todaysCustomer.DetermineWillBuyWeather(weatherTodayResult);
     buyTodayWeatherPrice   = todaysCustomer.DetermineWillBuyPrice(pricePerCup);
 }