summaryrefslogtreecommitdiff
path: root/src/ai/api/ai_vehicle.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ai/api/ai_vehicle.hpp')
-rw-r--r--src/ai/api/ai_vehicle.hpp14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/ai/api/ai_vehicle.hpp b/src/ai/api/ai_vehicle.hpp
index 84ddb4734..1336e9efe 100644
--- a/src/ai/api/ai_vehicle.hpp
+++ b/src/ai/api/ai_vehicle.hpp
@@ -68,11 +68,15 @@ public:
*/
enum VehicleType {
/* Order IS important, as it now matches the internal state of the game for vehicle type */
- VEHICLE_RAIL, //!< Rail type vehicle.
- VEHICLE_ROAD, //!< Road type vehicle (bus / truck).
- VEHICLE_WATER, //!< Water type vehicle.
- VEHICLE_AIR, //!< Air type vehicle.
- VEHICLE_INVALID = 0xFF, //!< Invalid vehicle type.
+ VT_RAIL, //!< Rail type vehicle.
+ VT_ROAD, //!< Road type vehicle (bus / truck).
+ VT_WATER, //!< Water type vehicle.
+ VT_AIR, //!< Air type vehicle.
+ VT_INVALID = 0xFF, //!< Invalid vehicle type.
+
+#ifdef DEFINE_SCRIPT_FILES
+ VEHICLE_INVALID = -1, //!< Invalid VehicleID.
+#endif /* DEFINE_SCRIPT_FILES */
};
/**