| 371 | }; |
| 372 | |
| 373 | void AnimateRoadStopTile(TileIndex tile) |
| 374 | { |
| 375 | const RoadStopSpec *ss = GetRoadStopSpec(tile); |
| 376 | if (ss == nullptr) return; |
| 377 | |
| 378 | RoadStopAnimationBase::AnimateTile(ss, BaseStation::GetByTile(tile), tile, ss->flags.Test(RoadStopSpecFlag::Cb141RandomBits)); |
| 379 | } |
| 380 | |
| 381 | void TriggerRoadStopAnimation(BaseStation *st, TileIndex trigger_tile, StationAnimationTrigger trigger, CargoType cargo_type) |
| 382 | { |
no test coverage detected