]> 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 a9e8c8ef8691418b2822cf7ee6c760a3336f5c59..61bc9a3abb43c79a79a705e0ca9f4472ed607a34 100644 (file)
 class FGExternal: public FGInterface {
 
 public:
+    FGExternal( double dt );
+    ~FGExternal();
+
     // 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 );
 };