summaryrefslogtreecommitdiff
path: root/src/ai/api/ai_airport.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_airport.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_airport.hpp')
-rw-r--r--src/ai/api/ai_airport.hpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/ai/api/ai_airport.hpp b/src/ai/api/ai_airport.hpp
index f0c52bc45..d43eecafd 100644
--- a/src/ai/api/ai_airport.hpp
+++ b/src/ai/api/ai_airport.hpp
@@ -26,19 +26,19 @@ public:
*/
enum AirportType {
/* Note: the values _are_ important as they represent an in-game value */
- AT_SMALL = 0, //!< The small airport.
- AT_LARGE = 1, //!< The large airport.
- AT_METROPOLITAN = 3, //!< The metropolitan airport.
- AT_INTERNATIONAL = 4, //!< The international airport.
- AT_COMMUTER = 5, //!< The commuter airport.
- AT_INTERCON = 7, //!< The intercontinental airport.
+ AT_SMALL = 0, ///< The small airport.
+ AT_LARGE = 1, ///< The large airport.
+ AT_METROPOLITAN = 3, ///< The metropolitan airport.
+ AT_INTERNATIONAL = 4, ///< The international airport.
+ AT_COMMUTER = 5, ///< The commuter airport.
+ AT_INTERCON = 7, ///< The intercontinental airport.
/* Next are the airports which only have helicopter platforms */
- AT_HELIPORT = 2, //!< The heliport.
- AT_HELISTATION = 8, //!< The helistation.
- AT_HELIDEPOT = 6, //!< The helidepot.
+ AT_HELIPORT = 2, ///< The heliport.
+ AT_HELISTATION = 8, ///< The helistation.
+ AT_HELIDEPOT = 6, ///< The helidepot.
- AT_INVALID = 255, //!< Invalid airport.
+ AT_INVALID = 255, ///< Invalid airport.
};
/**
@@ -46,11 +46,11 @@ public:
*/
enum PlaneType {
/* Note: the values _are_ important as they represent an in-game value */
- PT_HELICOPTER = 0, //!< A helicopter.
- PT_SMALL_PLANE = 1, //!< A small plane.
- PT_BIG_PLANE = 3, //!< A big plane.
+ PT_HELICOPTER = 0, ///< A helicopter.
+ PT_SMALL_PLANE = 1, ///< A small plane.
+ PT_BIG_PLANE = 3, ///< A big plane.
- PT_INVALID = -1, //!< An invalid PlaneType
+ PT_INVALID = -1, ///< An invalid PlaneType
};
/**