diff options
Diffstat (limited to 'src/vehicle.h')
-rw-r--r-- | src/vehicle.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/vehicle.h b/src/vehicle.h index 63f4203ee..cb0c78809 100644 --- a/src/vehicle.h +++ b/src/vehicle.h @@ -415,6 +415,12 @@ struct Vehicle : PoolItem<Vehicle, VehicleID, &_Vehicle_pool> { virtual int GetImage(Direction direction) const { return 0; } /** + * Gets the speed in mph that can be sent into SetDParam for string processing. + * @return the vehicle's speed + */ + virtual int GetDisplaySpeed() const { return 0; } + + /** * Calls the tick handler of the vehicle */ virtual void Tick() {}; |