| 3803 | |
| 3804 | |
| 3805 | static void AnimateTile_Station(TileIndex tile) |
| 3806 | { |
| 3807 | if (HasStationRail(tile)) { |
| 3808 | AnimateStationTile(tile); |
| 3809 | return; |
| 3810 | } |
| 3811 | |
| 3812 | if (IsAirport(tile)) { |
| 3813 | AnimateAirportTile(tile); |
| 3814 | return; |
| 3815 | } |
| 3816 | |
| 3817 | if (IsAnyRoadStopTile(tile)) { |
| 3818 | AnimateRoadStopTile(tile); |
| 3819 | return; |
| 3820 | } |
| 3821 | } |
| 3822 | |
| 3823 | |
| 3824 | static bool ClickTile_Station(TileIndex tile) |
nothing calls this directly
no test coverage detected