1
0
Fork 0
flightgear/src/FDM/LaRCsim/ls_model.h
curt 1f1b2bab50 David Megginson made a few (mostly minor) mods to the LaRCsim files, and
it's now possible to choose the LaRCsim model at runtime, as in

  fgfs --aircraft=c172

or

  fgfs --aircraft=uiuc --aircraft-dir=Aircraft-uiuc/Boeing747

I did this so that I could play with the UIUC stuff without losing
Tony's C172 with its flaps, etc.  I did my best to respect the design
of the LaRCsim code by staying in C, making only minimal changes, and
not introducing any dependencies on the rest of FlightGear.  The
modified files are attached.
2000-04-10 20:09:40 +00:00

20 lines
231 B
C

/* a quick ls_model.h */
#ifndef _LS_MODEL_H
#define _LS_MODEL_H
typedef enum {
NAVION,
C172,
CHEROKEE,
UIUC
} Model;
extern Model current_model;
void ls_model( SCALAR dt, int Initialize );
#endif /* _LS_MODEL_H */