summaryrefslogtreecommitdiff
path: root/src/vehicle_type.h
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2009-01-23 20:53:43 +0000
committerpeter1138 <peter1138@openttd.org>2009-01-23 20:53:43 +0000
commit3d404c2927ba86237240318bdee158080d51662a (patch)
treee459d4ac788aed994e9b660de8c44224e836c826 /src/vehicle_type.h
parent1879319f6682472d54f69f1f65c5554263cbf5c5 (diff)
downloadopenttd-3d404c2927ba86237240318bdee158080d51662a.tar.xz
(svn r15236) -Codechange: Rename realistic_acceleration patch option to train_acceleration_model, and change from boolean to value. Don't forget to update your settings.
Diffstat (limited to 'src/vehicle_type.h')
-rw-r--r--src/vehicle_type.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/vehicle_type.h b/src/vehicle_type.h
index 6a9d7c060..b05e374c4 100644
--- a/src/vehicle_type.h
+++ b/src/vehicle_type.h
@@ -61,4 +61,9 @@ enum {
MAX_LENGTH_VEHICLE_NAME_PIXELS = 150, ///< The maximum length of a vehicle name in pixels
};
+enum TrainAccelerationModel {
+ TAM_ORIGINAL,
+ TAM_REALISTIC,
+};
+
#endif /* VEHICLE_TYPE_H */