From f4281020927f0ee63227d8195a3a1479489f970a Mon Sep 17 00:00:00 2001 From: terkhen Date: Sat, 6 Mar 2010 12:41:18 +0000 Subject: (svn r19337) -Codechange: Create the GroundVehicle class. --- src/train.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/train.h') diff --git a/src/train.h b/src/train.h index 70eed6854..89d9ce63c 100644 --- a/src/train.h +++ b/src/train.h @@ -12,12 +12,12 @@ #ifndef TRAIN_H #define TRAIN_H -#include "vehicle_base.h" #include "newgrf_engine.h" #include "cargotype.h" #include "rail.h" #include "engine_base.h" #include "rail_map.h" +#include "ground_vehicle.hpp" struct Train; @@ -111,7 +111,7 @@ enum AccelStatus { /** * 'Train' is either a loco or a wagon. */ -struct Train : public SpecializedVehicle { +struct Train : public GroundVehicle { TrainCache tcache; /* Link between the two ends of a multiheaded engine */ @@ -129,7 +129,7 @@ struct Train : public SpecializedVehicle { uint16 wait_counter; /** We don't want GCC to zero our struct! It already is zeroed and has an index! */ - Train() : SpecializedVehicle() {} + Train() : GroundVehicle() {} /** We want to 'destruct' the right class. */ virtual ~Train() { this->PreDestructor(); } -- cgit v1.2.3-54-g00ecf