]> git.mxchange.org Git - flightgear.git/blobdiff - src/FDM/External.hxx
Updates to the scenery loading infrastructure to make it more flexible,
[flightgear.git] / src / FDM / External.hxx
index a9e8c8ef8691418b2822cf7ee6c760a3336f5c59..2cc20b4250f7ce1b623143652ff0de1a96da2109 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( int multiloop );
 };