| 200 | } |
| 201 | |
| 202 | inline void AnimateTile(TileIndex tile) |
| 203 | { |
| 204 | AnimateTileProc *proc = _tile_type_procs[GetTileType(tile)]->animate_tile_proc; |
| 205 | assert(proc != nullptr); |
| 206 | proc(tile); |
| 207 | } |
| 208 | |
| 209 | inline bool ClickTile(TileIndex tile) |
| 210 | { |
no test coverage detected