| 388 | // Get the plant that owns the tile at the specified position. |
| 389 | extern DFHACK_EXPORT df::plant *getPlantAtTile(int32_t x, int32_t y, int32_t z); |
| 390 | inline df::plant *getPlantAtTile(df::coord pos) { return getPlantAtTile(pos.x, pos.y, pos.z); } |
| 391 | |
| 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); |
no outgoing calls
no test coverage detected