* Makes this order a Go To Waypoint order. * @param destination the waypoint to go to. */
| 85 | * @param destination the waypoint to go to. |
| 86 | */ |
| 87 | void Order::MakeGoToWaypoint(StationID destination) |
| 88 | { |
| 89 | this->type = OT_GOTO_WAYPOINT; |
| 90 | this->flags = 0; |
| 91 | this->dest = destination; |
| 92 | } |
| 93 | |
| 94 | /** |
| 95 | * Makes this order a Loading order. |
no outgoing calls
no test coverage detected