summaryrefslogtreecommitdiff
path: root/src/ship.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-07-01 19:24:54 +0000
committerrubidium <rubidium@openttd.org>2007-07-01 19:24:54 +0000
commitec137f60edec89392a19fc078bf47d2ee291dc1c (patch)
treefb5afab9eaa026a83642f983053acfabe1d9f492 /src/ship.h
parentc0e341ee05792cc692d19a8ed80aeebc05d3af0e (diff)
downloadopenttd-ec137f60edec89392a19fc078bf47d2ee291dc1c.tar.xz
(svn r10409) -Codechange: replace (Aircraft|RoadVeh|Ship|Train)_Tick with a Tick method in the Vehicle class.
Diffstat (limited to 'src/ship.h')
-rw-r--r--src/ship.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ship.h b/src/ship.h
index 200c1016c..37657e7e6 100644
--- a/src/ship.h
+++ b/src/ship.h
@@ -47,6 +47,7 @@ struct Ship: public Vehicle {
void PlayLeaveStationSound() const;
bool IsPrimaryVehicle() const { return true; }
int GetImage(Direction direction) const;
+ void Tick();
};
#endif /* SHIP_H */