]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/fg_init.hxx
Attempt #1 to sort out confusion between left / right / parking brake
[flightgear.git] / src / Main / fg_init.hxx
index cd529cc6f24a361a531c7ba68fccbd09c3c3aabf..adfc4cc3c6d8f471422d85827c3d9c36c5944fe9 100644 (file)
@@ -62,18 +62,22 @@ bool fgInitConfig ( int argc, char **argv );
 SGPropertyNode *fgInitLocale(const char *language);
 
 
+// Init navaids and waypoints
+bool fgInitNav ();
+
+
 // General house keeping initializations
-bool fgInitGeneral ( void );
+bool fgInitGeneral ();
 
 
 // This is the top level init routine which calls all the other
 // initialization routines.  If you are adding a subsystem to flight
 // gear, its initialization call should located in this routine.
-bool fgInitSubsystems( void );
+bool fgInitSubsystems();
 
 
 // Reset
-void fgReInitSubsystems( void );
+void fgReInitSubsystems();
 
 
 // find basic airport location info from airport database
@@ -86,6 +90,10 @@ bool fgInitPosition();
 // returns a new instance of the SGTime class
 SGTime *fgInitTime();
 
+// set up a time offset (aka warp) if one is specified
+void fgInitTimeOffset();
+
+
 #endif // _FG_INIT_HXX