equal
deleted
inserted
replaced
8 #include "engine.h" |
8 #include "engine.h" |
9 |
9 |
10 typedef enum { |
10 typedef enum { |
11 STAT_CLASS_DFLT, ///< Default station class. |
11 STAT_CLASS_DFLT, ///< Default station class. |
12 STAT_CLASS_WAYP, ///< Waypoint class. |
12 STAT_CLASS_WAYP, ///< Waypoint class. |
13 STAT_CLASS_MAX = 16, ///< Maximum number of classes. |
13 STAT_CLASS_MAX = 32, ///< Maximum number of classes. |
14 } StationClassID; |
14 } StationClassID; |
15 |
15 |
16 /* Station layout for given dimensions - it is a two-dimensional array |
16 /* Station layout for given dimensions - it is a two-dimensional array |
17 * where index is computed as (x * platforms) + platform. */ |
17 * where index is computed as (x * platforms) + platform. */ |
18 typedef byte *StationLayout; |
18 typedef byte *StationLayout; |