forked from mirror/OpenTTD
(svn r24443) -Codechange: Move Vehicle::name to BaseConsist.
This commit is contained in:
@@ -17,9 +17,13 @@
|
||||
|
||||
/** Various front vehicle properties that are preserved when autoreplacing, using order-backup or switching front engines within a consist. */
|
||||
struct BaseConsist {
|
||||
char *name; ///< Name of vehicle
|
||||
Date service_interval; ///< The interval for (automatic) servicing; either in days or %.
|
||||
VehicleOrderID cur_real_order_index;///< The index to the current real (non-implicit) order
|
||||
|
||||
BaseConsist() : name(NULL) {}
|
||||
virtual ~BaseConsist();
|
||||
|
||||
void CopyConsistPropertiesFrom(const BaseConsist *src);
|
||||
};
|
||||
|
||||
|
Reference in New Issue
Block a user