]> git.mxchange.org Git - flightgear.git/blobdiff - src/Aircraft/aircraft.hxx
In the process of changing, adding and removing files the last few years
[flightgear.git] / src / Aircraft / aircraft.hxx
index 1ef175ad1942f1e7bceefddb3ca9dd0c2c78967d..c51c8162450ec964d7da68bbc55f28879063621d 100644 (file)
@@ -3,7 +3,7 @@
 //
 // Written by Curtis Olson, started May 1997.
 //
-// Copyright (C) 1997  Curtis L. Olson  - curt@infoplane.com
+// Copyright (C) 1997  Curtis L. Olson  - http://www.flightgear.org/~curt
 //
 // This program is free software; you can redistribute it and/or
 // modify it under the terms of the GNU General Public License as
 
 
 #include <FDM/flight.hxx>
-#include <Controls/controls.hxx>
+#include <Main/fg_init.hxx>
+
+#include "controls.hxx"
 
 
 // Define a structure containing all the parameters for an aircraft
 typedef struct{
-    FGInterface   *fdm_state;
+    FGInterface *fdm_state;
     FGControls *controls;
 } fgAIRCRAFT ;
 
@@ -56,6 +58,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