]> git.mxchange.org Git - flightgear.git/blobdiff - src/FDM/MagicCarpet.hxx
I forgot a linker dependency. It really si time to figure out why these are all needed.
[flightgear.git] / src / FDM / MagicCarpet.hxx
index 4c11d3316fd1519be3f6abca4bc11f543781cdb3..aa35b020da1a35408d5fcd04438fe642db020b04 100644 (file)
 class FGMagicCarpet: public FGInterface {
 
 public:
+    FGMagicCarpet( double dt );
+    ~FGMagicCarpet();
+
     // reset flight params to a specific position 
-    bool init( double dt );
+    void init();
 
     // update position based on inputs, positions, velocities, etc.
-    bool update( int multiloop );
+    void update( double dt );
 
-private:
-    SGValue * model_hz;
 };