]> git.mxchange.org Git - flightgear.git/blobdiff - src/Aircraft/aircraft.hxx
Make sure pu.h doesn't include glut by accident.
[flightgear.git] / src / Aircraft / aircraft.hxx
index 1ef175ad1942f1e7bceefddb3ca9dd0c2c78967d..65450ffb18f3d8d412a6beb970198e949fcf8796 100644 (file)
 
 #include <FDM/flight.hxx>
 #include <Controls/controls.hxx>
+#include <Main/fg_init.hxx>
 
 
 // Define a structure containing all the parameters for an aircraft
 typedef struct{
-    FGInterface   *fdm_state;
+    FGInterface *fdm_state;
     FGControls *controls;
 } fgAIRCRAFT ;
 
@@ -56,6 +57,9 @@ void fgAircraftInit( void );
 void fgAircraftOutputCurrent(fgAIRCRAFT *a);
 
 
-#endif // _AIRCRAFT_HXX
+// Read the list of available aircraft into to property tree
+void fgReadAircraft(void);
+bool fgLoadAircraft (const SGPropertyNode * arg);
 
+#endif // _AIRCRAFT_HXX