| 359 | struct RoadStopAnimationFrameAnimationHelper { |
| 360 | static uint8_t Get(BaseStation *st, TileIndex tile) { return st->GetRoadStopAnimationFrame(tile); } |
| 361 | static bool Set(BaseStation *st, TileIndex tile, uint8_t frame) { return st->SetRoadStopAnimationFrame(tile, frame); } |
| 362 | }; |
| 363 | |
| 364 | /** Helper class for animation control. */ |
no test coverage detected