| 327 | |
| 328 | extern DFHACK_EXPORT bool isTileVisible(int32_t x, int32_t y, int32_t z); |
| 329 | inline bool isTileVisible(df::coord pos) { return isTileVisible(pos.x, pos.y, pos.z); } |
| 330 | |
| 331 | // Get the map block or NULL if block is not valid. |
| 332 | extern DFHACK_EXPORT df::map_block *getBlock (int32_t blockx, int32_t blocky, int32_t blockz); |
no outgoing calls
no test coverage detected