summaryrefslogtreecommitdiff
path: root/src/vehicle_base.h
diff options
context:
space:
mode:
authorglx <glx@openttd.org>2008-02-01 22:02:14 +0000
committerglx <glx@openttd.org>2008-02-01 22:02:14 +0000
commit7ce12e50da88b1e56f9abfd022f644fad164f03f (patch)
tree85232d22f5526c6d36a56090c71361bfa9b43bb6 /src/vehicle_base.h
parentf725b795afb17bbc532bd39c45029dfddc19837f (diff)
downloadopenttd-7ce12e50da88b1e56f9abfd022f644fad164f03f.tar.xz
(svn r12037) -Codechange: replace OnNewDay_(Aircraft|RoadVeh|Ship|Train) with an OnNewDay method in the Vehicle class
Diffstat (limited to 'src/vehicle_base.h')
-rw-r--r--src/vehicle_base.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/vehicle_base.h b/src/vehicle_base.h
index f6eedf51a..cce77aa4d 100644
--- a/src/vehicle_base.h
+++ b/src/vehicle_base.h
@@ -426,6 +426,11 @@ public:
virtual void Tick() {};
/**
+ * Calls the new day handler of the vehicle
+ */
+ virtual void OnNewDay() {};
+
+ /**
* Gets the running cost of a vehicle that can be sent into SetDParam for string processing.
* @return the vehicle's running cost
*/