Where must we stop at the platform? */
| 146 | inline OrderNonStopFlags GetNonStopType() const { return static_cast<OrderNonStopFlags>(GB(this->type, 6, 2)); } |
| 147 | /** Where must we stop at the platform? */ |
| 148 | inline OrderStopLocation GetStopLocation() const { return static_cast<OrderStopLocation>(GB(this->type, 4, 2)); } |
| 149 | /** What caused us going to the depot? */ |
| 150 | inline OrderDepotTypeFlags GetDepotOrderType() const { return static_cast<OrderDepotTypeFlags>(GB(this->flags, 0, 3)); } |
| 151 | /** What are we going to do when in the depot. */ |
no test coverage detected