diff options
Diffstat (limited to 'src/ai/api/ai_station.hpp')
-rw-r--r-- | src/ai/api/ai_station.hpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/ai/api/ai_station.hpp b/src/ai/api/ai_station.hpp index 79ad99537..9a8abf7fc 100644 --- a/src/ai/api/ai_station.hpp +++ b/src/ai/api/ai_station.hpp @@ -46,12 +46,12 @@ public: */ enum StationType { /* Values are important, as they represent the internal state of the game. */ - STATION_TRAIN = 0x01, //!< Train station - STATION_TRUCK_STOP = 0x02, //!< Truck station - STATION_BUS_STOP = 0x04, //!< Bus station - STATION_AIRPORT = 0x08, //!< Airport - STATION_DOCK = 0x10, //!< Dock - STATION_ANY = 0x1F, //!< All station types + STATION_TRAIN = 0x01, ///< Train station + STATION_TRUCK_STOP = 0x02, ///< Truck station + STATION_BUS_STOP = 0x04, ///< Bus station + STATION_AIRPORT = 0x08, ///< Airport + STATION_DOCK = 0x10, ///< Dock + STATION_ANY = 0x1F, ///< All station types }; /** |