Ejemplo n.º 1
0
 public void Init(Weatherman plugin)
 {
     SupportedWeathers = new List <WeathermanWeather>();
     if (plugin.GetWeathers(ZoneId) != null)
     {
         foreach (var w in plugin.GetWeathers(ZoneId))
         {
             SupportedWeathers.Add(new WeathermanWeather(w, false, plugin.IsWeatherNormal(w, ZoneId)));
         }
     }
 }
Ejemplo n.º 2
0
 public Gui(Weatherman plugin)
 {
     this.plugin = plugin;
 }