implement shooting gunturrets
[rofl0r-openDOW.git] / maps.h
blob8493dbdb5ae8530b26f1a052ed38097cf3d961f5
1 #ifndef MAPS_H
2 #define MAPS_H
4 #include "map.h"
6 enum map_index {
7 MI_ITALY = 0,
8 MI_PAKISTAN,
9 MI_ENGLAND,
10 MI_PERU,
11 MI_FLORIDA,
12 MI_VIETNAM,
13 MI_TEXAS,
14 MI_CANADA,
15 MI_SAFRICA,
16 MI_FRANCE,
17 MI_AUSTRALIA,
18 MI_RUSSIA,
19 MI_INVALID,
20 MI_MAX = MI_INVALID,
23 extern const struct map *maps[];
24 extern const struct map_screen *map_screens[];
25 extern const mapscreen_index *map_bonus_layer_indices[];
26 extern const struct map_fglayer *map_bonus_screens[];
28 //RcB: DEP "maps.c"
29 #endif