From 679248fb51b89b51b00eb10dfe58ab7f26606c6d Mon Sep 17 00:00:00 2001 From: peter1138 Date: Sun, 5 Apr 2009 08:01:36 +0000 Subject: (svn r15956) -Codechange: Enumorize station spec flags. --- src/newgrf_station.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/newgrf_station.h') diff --git a/src/newgrf_station.h b/src/newgrf_station.h index 9af801f05..5bd52891b 100644 --- a/src/newgrf_station.h +++ b/src/newgrf_station.h @@ -29,6 +29,14 @@ typedef TinyEnumT StationClassIDByte; /** Allow incrementing of StationClassID variables */ DECLARE_POSTFIX_INCREMENT(StationClassID); +enum StationSpecFlags { + SSF_SEPARATE_GROUND, ///< Use different sprite set for ground sprites. + SSF_DIV_BY_STATION_SIZE, ///< Divide cargo amount by station size. + SSF_CB141_RANDOM_BITS, ///< Callback 141 needs random bits. + SSF_CUSTOM_FOUNDATIONS, ///< Draw custom foundations. + SSF_EXTENDED_FOUNDATIONS, ///< Extended foundation block instead of simple. +}; + /* Station layout for given dimensions - it is a two-dimensional array * where index is computed as (x * platforms) + platform. */ typedef byte *StationLayout; -- cgit v1.2.3-54-g00ecf