]> git.mxchange.org Git - flightgear.git/blobdiff - src/FDM/MagicCarpet.hxx
Harald JOHNSEN:
[flightgear.git] / src / FDM / MagicCarpet.hxx
index 5705b8b005fcbd713afd518ac3d533bd2a530c67..cc5d6547fe51fb54b0750f22b2a76ecd0615b2e5 100644 (file)
@@ -2,7 +2,7 @@
 //
 // Written by Curtis Olson, started October 1999.
 //
-// Copyright (C) 1999  Curtis L. Olson  - curt@flightgear.org
+// Copyright (C) 1999  Curtis L. Olson  - http://www.flightgear.org/~curt
 //
 // This program is free software; you can redistribute it and/or
 // modify it under the terms of the GNU General Public License as
 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 );
+
 };