]> git.mxchange.org Git - flightgear.git/blobdiff - src/Model/acmodel.hxx
Change FGSteam into a proper subsystem rather than a collection of
[flightgear.git] / src / Model / acmodel.hxx
index 2898c2e9313e33169722dbfb2f5ab6872133c11b..b2674e70fe3418e23c565fd0993a77e4ad3e0ca3 100644 (file)
@@ -21,7 +21,7 @@ SG_USING_STD(vector);
 // Don't pull in the headers, since we don't need them here.
 class ssgRoot;
 class ssgSelector;
-class FG3DModel;
+class FGModelPlacement;
 
 
 class FGAircraftModel : public FGSubsystem
@@ -34,13 +34,13 @@ public:
   virtual void init ();
   virtual void bind ();
   virtual void unbind ();
-  virtual void update (int dt);
+  virtual void update (double dt);
   virtual void draw ();
-  virtual FG3DModel * get3DModel() { return _aircraft; }
+  virtual FGModelPlacement * get3DModel() { return _aircraft; }
 
 private:
 
-  FG3DModel * _aircraft;
+  FGModelPlacement * _aircraft;
   ssgSelector * _selector;
   ssgRoot * _scene;
   float _nearplane;