(svn r18963) -Codechange: Give AccelerationModel a generical name.

This commit is contained in:
terkhen
2010-01-30 16:27:35 +00:00
parent 815eede0be
commit 272f2cd93e
5 changed files with 15 additions and 12 deletions

View File

@@ -68,9 +68,10 @@ enum {
MAX_LENGTH_VEHICLE_NAME_PIXELS = 150, ///< The maximum length of a vehicle name in pixels
};
enum TrainAccelerationModel {
TAM_ORIGINAL,
TAM_REALISTIC,
/** Vehicle acceleration models. */
enum AccelerationModel {
AM_ORIGINAL,
AM_REALISTIC,
};
#endif /* VEHICLE_TYPE_H */