summaryrefslogtreecommitdiff
path: root/src/transport_type.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-10-19 15:39:12 +0000
committerrubidium <rubidium@openttd.org>2008-10-19 15:39:12 +0000
commitb0537d271f364486246bdab3be8a2bd44d43022f (patch)
tree2a5381abe13a96fd46089d41193bd7b605164edc /src/transport_type.h
parente38213b5ef677f2c46c331ecbf6b778cc1e3e6e9 (diff)
downloadopenttd-b0537d271f364486246bdab3be8a2bd44d43022f.tar.xz
(svn r14491) -Documentation: updates/additions of doxygen docs (Alberth)
Diffstat (limited to 'src/transport_type.h')
-rw-r--r--src/transport_type.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/transport_type.h b/src/transport_type.h
index c23afbd7c..c31a0ae79 100644
--- a/src/transport_type.h
+++ b/src/transport_type.h
@@ -7,6 +7,7 @@
typedef uint16 UnitID;
+/** Available types of transport */
enum TransportType {
/* These constants are for now linked to the representation of bridges
* and tunnels, so they can be used by GetTileTrackStatus_TunnelBridge.
@@ -15,10 +16,10 @@ enum TransportType {
* the values for road and rail.
*/
TRANSPORT_BEGIN = 0,
- TRANSPORT_RAIL = TRANSPORT_BEGIN,
- TRANSPORT_ROAD,
- TRANSPORT_WATER,
- TRANSPORT_AIR,
+ TRANSPORT_RAIL = TRANSPORT_BEGIN, ///< Transport by train
+ TRANSPORT_ROAD, ///< Transport by road vehicle
+ TRANSPORT_WATER, ///< Transport over water
+ TRANSPORT_AIR, ///< Transport through air
TRANSPORT_END,
INVALID_TRANSPORT = 0xff,
};