]> git.mxchange.org Git - flightgear.git/blobdiff - src/FDM/MagicCarpet.hxx
First commit of properties code. JSBSim now has a basic property tree all
[flightgear.git] / src / FDM / MagicCarpet.hxx
index 5705b8b005fcbd713afd518ac3d533bd2a530c67..32fa71f241d94ba76b8084ca4ad360485cd224c4 100644 (file)
 class FGMagicCarpet: public FGInterface {
 
 public:
+    FGMagicCarpet( double dt );
+    ~FGMagicCarpet();
+
     // reset flight params to a specific position 
-    int init( double dt );
+    void init();
 
     // update position based on inputs, positions, velocities, etc.
-    int update( int multiloop );
+    void update( int multiloop );
+
 };