summaryrefslogtreecommitdiff
path: root/src/ai/api/ai_station.hpp
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2010-08-01 19:36:36 +0000
committeryexo <yexo@openttd.org>2010-08-01 19:36:36 +0000
commit99cb47a3825f370e19adacd1ad1e6241eccb99f9 (patch)
tree395d0bce297155d8071e5a761e9290f107ed248b /src/ai/api/ai_station.hpp
parented4f806f1dcff2e10d2fdfb687e6bcebe9a81af3 (diff)
downloadopenttd-99cb47a3825f370e19adacd1ad1e6241eccb99f9.tar.xz
(svn r20284) -Codechange: use ///< for single-line doxygen comments in the AI code
Diffstat (limited to 'src/ai/api/ai_station.hpp')
-rw-r--r--src/ai/api/ai_station.hpp12
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
};
/**