| 392 | // Get the biome type at the given region coordinates. |
| 393 | DFHACK_EXPORT df::enums::biome_type::biome_type getBiomeTypeWithRef(int16_t region_x, int16_t region_y, int16_t region_ref_y); |
| 394 | inline df::enums::biome_type::biome_type getBiomeType(int16_t region_x, int16_t region_y) { return getBiomeTypeWithRef(region_x, region_y, region_y); } |
| 395 | |
| 396 | DFHACK_EXPORT bool isTileAquifer(int32_t x, int32_t y, int32_t z); |
| 397 | inline bool isTileAquifer(df::coord pos) { return isTileAquifer(pos.x, pos.y, pos.z); } |
no outgoing calls
no test coverage detected