| 344 | extern DFHACK_EXPORT df::tile_occupancy *getTileOccupancy(int32_t x, int32_t y, int32_t z); |
| 345 | |
| 346 | inline df::tiletype *getTileType(df::coord pos) { return getTileType(pos.x, pos.y, pos.z); } |
| 347 | inline df::tile_designation *getTileDesignation(df::coord pos) { return getTileDesignation(pos.x, pos.y, pos.z); } |
| 348 | inline df::tile_occupancy *getTileOccupancy(df::coord pos) { return getTileOccupancy(pos.x, pos.y, pos.z); } |
| 349 |
no outgoing calls
no test coverage detected