| 401 | } |
| 402 | |
| 403 | StationIndex RideGetFirstEmptyStationStart(const Ride& ride) |
| 404 | { |
| 405 | for (const auto& station : ride.getStations()) |
| 406 | { |
| 407 | if (station.Start.IsNull()) |
| 408 | { |
| 409 | return ride.getStationIndex(&station); |
| 410 | } |
| 411 | } |
| 412 | return StationIndex::GetNull(); |
| 413 | } |
| 414 | |
| 415 | int32_t RideStation::GetBaseZ() const |
| 416 | { |
no test coverage detected