diff options
author | rubidium <rubidium@openttd.org> | 2007-07-01 19:24:54 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-07-01 19:24:54 +0000 |
commit | 90f85c957ad8e8d2dfd23535701b3079fc2d2718 (patch) | |
tree | fb5afab9eaa026a83642f983053acfabe1d9f492 /src/ship.h | |
parent | 83a880c882992efb1b949b26ac881abc3825964f (diff) | |
download | openttd-90f85c957ad8e8d2dfd23535701b3079fc2d2718.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.h | 1 |
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 */ |