* Makes this order a Go To Station order. * @param destination the station to go to. */
| 56 | * @param destination the station to go to. |
| 57 | */ |
| 58 | void Order::MakeGoToStation(StationID destination) |
| 59 | { |
| 60 | this->type = OT_GOTO_STATION; |
| 61 | this->flags = 0; |
| 62 | this->dest = destination; |
| 63 | } |
| 64 | |
| 65 | /** |
| 66 | * Makes this order a Go To Depot order. |
no outgoing calls
no test coverage detected