Beispiel #1
0
 public Day(Player player, UserInterface display)
 {
     this.player     = player;
     this.display    = display;
     display.weather = weather;
     store           = new Store(player);
     todaysWeather   = weather.GetCurrentConditions();
     display.DisplayArt(todaysWeather);
 }