public void updateWeather(WeatherSituation wx)
 {
     this.wind = wx.windAtPosition(this.position);
 }
 public void fly(WeatherSituation wx, double milliseconds)
 {
     this.updateWeather(wx);
     this.updateState(milliseconds);
     this.updateDeltaState(milliseconds);
 }