Exemplo n.º 1
0
 public Day(Random r, List <Weather> initializer, Inventory userInventory)
 {
     wr      = new Weather(r);
     actual  = new Weather(r);
     se      = new Store();
     ui      = new UserInterface();
     iy      = userInventory;
     forcast = wr.WeatherForcast(initializer, 7, r);
     Actual  = wr.CreateDayWeather(forcast[0], r, 6);
 }