summaryrefslogtreecommitdiff
path: root/src/vehicle.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-05-07 15:58:05 +0000
committerrubidium <rubidium@openttd.org>2007-05-07 15:58:05 +0000
commit2813b4440baec0866b243b83c45211b8b1fd3dec (patch)
treeae24499f9e5c82cb54457487b656bef2c2b5055a /src/vehicle.h
parentebe81b98ce72768feadfdf562931b4ff59e13ff3 (diff)
downloadopenttd-2813b4440baec0866b243b83c45211b8b1fd3dec.tar.xz
(svn r9807) -Codechange: unify playing of sound when vehicle has been loaded and leaves the station.
Diffstat (limited to 'src/vehicle.h')
-rw-r--r--src/vehicle.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/vehicle.h b/src/vehicle.h
index 9143d5c87..37bff24ca 100644
--- a/src/vehicle.h
+++ b/src/vehicle.h
@@ -375,6 +375,11 @@ struct Vehicle {
* Invalidates the vehicle list window of this type of vehicle
*/
virtual WindowClass GetVehicleListWindowClass() const { return WC_NONE; }
+
+ /**
+ * Play the sound associated with leaving the station
+ */
+ virtual void PlayLeaveStationSound() const {}
};
/**