* Draw a waypoint * @param x coordinate * @param y coordinate * @param station_class Station class. * @param station_type Station type within class. * @param railtype RailType to use for */
| 26 | * @param railtype RailType to use for |
| 27 | */ |
| 28 | void DrawWaypointSprite(int x, int y, StationClassID station_class, uint16_t station_type, RailType railtype) |
| 29 | { |
| 30 | if (!DrawStationTile(x, y, railtype, AXIS_X, station_class, station_type)) { |
| 31 | StationPickerDrawSprite(x, y, StationType::RailWaypoint, railtype, INVALID_ROADTYPE, AXIS_X); |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | TileArea Waypoint::GetTileArea(StationType type) const |
| 36 | { |
no test coverage detected