* Check whether a roadvehicle is a bus * @return true if bus */
| 80 | * @return true if bus |
| 81 | */ |
| 82 | bool RoadVehicle::IsBus() const |
| 83 | { |
| 84 | assert(this->IsFrontEngine()); |
| 85 | return IsCargoInClass(this->cargo_type, CargoClass::Passengers); |
| 86 | } |
| 87 | |
| 88 | /** |
| 89 | * Get the width of a road vehicle image in the GUI. |
no test coverage detected