예제 #1
0
        public void rungame()
        {
            Inventory Inventory = new Inventory();
            Recipe    Recipe    = new Recipe();
            Player    Player    = new Player();
            Store     Store     = new Store();
            Day       Day       = new Day();
            Game      game      = new Game();

            store.CalculateNewCashTotal(Player);
        }
예제 #2
0
 public void RunDayFunction()
 {
     weather.DayGameWeather();
     Console.WriteLine("Welcome to a new day. The weather is " + weather.GameWeather + "." + "The Temperature " + weather.Tempeture + ".");
     store.CalculateNewCashTotal();
     recipe.MakeLemondae();
     player.SetPrice();
     inventory.UseStock();
     DailyCustomer(CustomersPerDay());
     Console.WriteLine(player.StartingMoney);
     Console.ReadLine();
 }
예제 #3
0
        static void Main(string[] args)
        {
            Weather   Weather   = new Weather();
            Inventory Inventory = new Inventory();
            Recipe    Recipe    = new Recipe();
            Customer  Customer  = new Customer();
            Player    Player    = new Player();
            Store     Store     = new Store();
            Day       Day       = new Day();
            Game      game      = new Game();

            Store.CalculateNewCashTotal();
        }