src/ai/api/ai_vehicle.hpp
branchnoai
changeset 11000 51305152af09
parent 10999 f238f608f45c
child 11029 776c7cc8bda5
equal deleted inserted replaced
10999:f238f608f45c 11000:51305152af09
    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).