]> git.mxchange.org Git - flightgear.git/blobdiff - src/FDM/External.hxx
Added flap_deflection so that remote fdm can pass back actual flap deflection
[flightgear.git] / src / FDM / External.hxx
index 159615907bbac3278b9da268cba23e81f49408bd..61bc9a3abb43c79a79a705e0ca9f4472ed607a34 100644 (file)
 class FGExternal: public FGInterface {
 
 public:
+    FGExternal( double dt );
+    ~FGExternal();
+
     // 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 );
 };