]> git.mxchange.org Git - flightgear.git/blob - src/FDM/LaRCsim/ls_model.h
Updates to the scenery loading infrastructure to make it more flexible,
[flightgear.git] / src / FDM / LaRCsim / ls_model.h
1 /* a quick ls_model.h */
2
3
4 #ifndef _LS_MODEL_H
5 #define _LS_MODEL_H
6
7 typedef enum {
8   NAVION,
9   C172,
10   CHEROKEE,
11   UIUC
12 } Model;
13
14 extern Model current_model;
15
16
17 void ls_model( SCALAR dt, int Initialize );
18
19
20 #endif /* _LS_MODEL_H */