diff options
Diffstat (limited to 'src/roadveh.h')
-rw-r--r-- | src/roadveh.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/roadveh.h b/src/roadveh.h index 1e688e289..f63cf02ee 100644 --- a/src/roadveh.h +++ b/src/roadveh.h @@ -116,12 +116,7 @@ struct RoadVehicleCache { }; /** - * This class 'wraps' Vehicle; you do not actually instantiate this class. - * You create a Vehicle using AllocateVehicle, so it is added to the pool - * and you reinitialize that to a Train using: - * v = new (v) RoadVehicle(); - * - * As side-effect the vehicle type is set correctly. + * Buses, trucks and trams belong to this class. */ struct RoadVehicle : public SpecializedVehicle<RoadVehicle, VEH_ROAD> { RoadVehicleCache rcache; ///< Cache of often used calculated values |