Ejemplo n.º 1
0
 public void updateWeather(WeatherSituation wx)
 {
     this.wind = wx.windAtPosition(this.position);
 }
Ejemplo n.º 2
0
 public void fly(WeatherSituation wx, double milliseconds)
 {
     this.updateWeather(wx);
     this.updateState(milliseconds);
     this.updateDeltaState(milliseconds);
 }