| 207 | } |
| 208 | |
| 209 | inline bool ClickTile(TileIndex tile) |
| 210 | { |
| 211 | ClickTileProc *proc = _tile_type_procs[GetTileType(tile)]->click_tile_proc; |
| 212 | if (proc == nullptr) return false; |
| 213 | return proc(tile); |
| 214 | } |
| 215 | |
| 216 | #endif /* TILE_CMD_H */ |
no test coverage detected