summaryrefslogtreecommitdiff
path: root/src/ai/api/ai_road.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_road.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_road.hpp')
-rw-r--r--src/ai/api/ai_road.hpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/ai/api/ai_road.hpp b/src/ai/api/ai_road.hpp
index 0e71095e6..705a316f3 100644
--- a/src/ai/api/ai_road.hpp
+++ b/src/ai/api/ai_road.hpp
@@ -49,28 +49,28 @@ public:
*/
enum RoadType {
/* Values are important, as they represent the internal state of the game. */
- ROADTYPE_ROAD = 0, //!< Build road objects.
- ROADTYPE_TRAM = 1, //!< Build tram objects.
+ ROADTYPE_ROAD = 0, ///< Build road objects.
+ ROADTYPE_TRAM = 1, ///< Build tram objects.
- ROADTYPE_INVALID = -1, //!< Invalid RoadType.
+ ROADTYPE_INVALID = -1, ///< Invalid RoadType.
};
/**
* Type of road station.
*/
enum RoadVehicleType {
- ROADVEHTYPE_BUS, //!< Build objects useable for busses and passenger trams
- ROADVEHTYPE_TRUCK, //!< Build objects useable for trucks and cargo trams
+ ROADVEHTYPE_BUS, ///< Build objects useable for busses and passenger trams
+ ROADVEHTYPE_TRUCK, ///< Build objects useable for trucks and cargo trams
};
/**
* Types of road-related objects in the game.
*/
enum BuildType {
- BT_ROAD, //!< Build a piece of road
- BT_DEPOT, //!< Build a road depot
- BT_BUS_STOP, //!< Build a bus stop
- BT_TRUCK_STOP, //!< Build a truck stop
+ BT_ROAD, ///< Build a piece of road
+ BT_DEPOT, ///< Build a road depot
+ BT_BUS_STOP, ///< Build a bus stop
+ BT_TRUCK_STOP, ///< Build a truck stop
};
/**