]> git.mxchange.org Git - flightgear.git/blobdiff - src/Environment/environment_mgr.hxx
Major overhaul:
[flightgear.git] / src / Environment / environment_mgr.hxx
index 3238c9bf99114f71a92ce438400d44ad9fa2dc7d..63d3f725a9b551d59e7fd0923fa534cdd2fe1b9e 100644 (file)
@@ -33,7 +33,8 @@
 #  include <math.h>
 #endif
 
-#include "environment.hxx"
+class FGEnvironment;
+class FGEnvironmentCtrl;
 
 
 /**
@@ -50,7 +51,7 @@ public:
   virtual void init ();
   virtual void bind ();
   virtual void unbind ();
-  virtual void update (int dt);
+  virtual void update (double dt);
 
   /**
    * Get the environment information for the plane's current position.
@@ -67,6 +68,7 @@ public:
 private:
 
   FGEnvironment * _environment;        // always the same, for now
+  FGEnvironmentCtrl * _controller; // always the same, for now
 
 };