| 1682 | } |
| 1683 | |
| 1684 | void DrawType(int x, int y, int cls_id, int id) const override |
| 1685 | { |
| 1686 | const auto *spec = this->GetSpec(cls_id, id); |
| 1687 | if (spec == nullptr) { |
| 1688 | StationPickerDrawSprite(x, y, StationType::RoadWaypoint, INVALID_RAILTYPE, _cur_roadtype, RSV_DRIVE_THROUGH_X); |
| 1689 | } else { |
| 1690 | DrawRoadStopTile(x, y, _cur_roadtype, spec, StationType::RoadWaypoint, RSV_DRIVE_THROUGH_X); |
| 1691 | } |
| 1692 | } |
| 1693 | |
| 1694 | void FillUsedItems(std::set<PickerItem> &items) override |
| 1695 | { |
nothing calls this directly
no test coverage detected