]> git.mxchange.org Git - flightgear.git/blob - Controls/controls.h
1de0b716f8a26f949a18194baa7624f310a865f4
[flightgear.git] / Controls / controls.h
1 /**************************************************************************
2  * controls.h -- defines a standard interface to all flight sim controls
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 CONTROLS_H
12 #define CONTROLS_H
13
14
15 #include "../limits.h"
16
17
18 /* Define a structure containing the control parameters */
19
20 struct control_params {
21     double aileron;
22     double elev;
23     double rudder;
24     double throttle[MAX_ENGINES];
25 };
26
27
28 #endif CONTROLS_H
29
30
31 /* $Log$
32 /* Revision 1.1  1997/05/16 15:59:48  curt
33 /* Initial revision.
34 /*
35  */