summaryrefslogtreecommitdiff
path: root/src/transport_type.h
diff options
context:
space:
mode:
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,
};