]> git.mxchange.org Git - flightgear.git/blob - Aircraft/aircraft.h
2996cd6e1a379ca94d5f04bb22e22adc3e902ad2
[flightgear.git] / Aircraft / aircraft.h
1 /**************************************************************************
2  * aircraft.h -- define shared aircraft parameters
3  *
4  * Written by Curtis Olson, started May 1997.
5  *
6  * $Id$
7  * (Log is kept at end of this file)
8  **************************************************************************/
9
10
11 #ifndef AIRCRAFT_H
12 #define AIRCRAFT_H
13
14 #include "../flight/flight.h"
15 #include "../controls/controls.h"
16
17
18 /* Define a structure containing all the parameters for an aircraft */
19 struct aircraft_params {
20     struct flight_params flight;
21     struct control_params controls;
22 };
23
24
25 /* current_aircraft contains all the parameters of the aircraft
26    currently being operated. */
27 extern struct aircraft_params current_aircraft;
28
29
30 /* Display various parameters to stdout */
31 void aircraft_debug(int type);
32
33
34 #endif AIRCRAFT_H
35
36
37 /* $Log$
38 /* Revision 1.1  1997/05/16 15:58:25  curt
39 /* Initial revision.
40 /*
41  */