diff options
Diffstat (limited to 'src/engine_type.h')
-rw-r--r-- | src/engine_type.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/engine_type.h b/src/engine_type.h index 8c681216e..c7ce9fc08 100644 --- a/src/engine_type.h +++ b/src/engine_type.h @@ -99,6 +99,10 @@ struct RoadVehicleInfo { uint16 max_speed; ///< Maximum speed in mph/3.2 units byte capacity; CargoID cargo_type; + uint8 weight; ///< Weight in 1/4t units + uint8 power; ///< Power in 10hp units + uint8 tractive_effort; ///< Coefficient of tractive effort + uint8 air_drag; ///< Coefficient of air drag }; /** Information about a vehicle |