| 82 | CoordsXYZ _vehicleCurPosition; |
| 83 | |
| 84 | PitchAndRoll PitchAndRollStart(bool useInvertedSprites, TileElement* tileElement) |
| 85 | { |
| 86 | auto trackType = tileElement->asTrack()->GetTrackType(); |
| 87 | const auto& ted = GetTrackElementDescriptor(trackType); |
| 88 | return PitchAndRoll{ ted.definition.pitchStart, TrackGetActualBank3(useInvertedSprites, tileElement) }; |
| 89 | } |
| 90 | |
| 91 | int32_t GetAccelerationDecrease2(const int32_t velocity, const int32_t totalMass) |
| 92 | { |
no test coverage detected