equal
deleted
inserted
replaced
76 |
76 |
77 /** |
77 /** |
78 * The different states a vehicle can be in. |
78 * The different states a vehicle can be in. |
79 */ |
79 */ |
80 enum VehicleState { |
80 enum VehicleState { |
81 VS_RUNNING //!< The vehicle is currently running. |
81 VS_RUNNING, //!< The vehicle is currently running. |
82 VS_STOPPED, //!< The vehicle is stopped manually. |
82 VS_STOPPED, //!< The vehicle is stopped manually. |
83 VS_IN_DEPOT, //!< The vehicle is stopped in the depot. |
83 VS_IN_DEPOT, //!< The vehicle is stopped in the depot. |
84 VS_AT_STATION, //!< The vehicle is stopped at a station and is currently loading or unloading. |
84 VS_AT_STATION, //!< The vehicle is stopped at a station and is currently loading or unloading. |
85 VS_BROKEN, //!< The vehicle has broken down and will start running again in a while. |
85 VS_BROKEN, //!< The vehicle has broken down and will start running again in a while. |
86 VS_CRASHED, //!< The vehicle is crashed (and will never run again). |
86 VS_CRASHED, //!< The vehicle is crashed (and will never run again). |