newgrf_station.h
changeset 3767 2c8990ba0313
parent 3766 f0077e6b6f99
child 3769 2fd087fd336f
equal deleted inserted replaced
3766:f0077e6b6f99 3767:2c8990ba0313
     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;