X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FFDM%2FMagicCarpet.hxx;h=aa35b020da1a35408d5fcd04438fe642db020b04;hb=e6c6c666c2d71fed0d1cd7176a793f8055bad14c;hp=5705b8b005fcbd713afd518ac3d533bd2a530c67;hpb=b5aaa84cc906378a2c7e30b947319ea286446142;p=flightgear.git diff --git a/src/FDM/MagicCarpet.hxx b/src/FDM/MagicCarpet.hxx index 5705b8b00..aa35b020d 100644 --- a/src/FDM/MagicCarpet.hxx +++ b/src/FDM/MagicCarpet.hxx @@ -31,11 +31,15 @@ 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( double dt ); + };