| 185 | DFHACK_EXPORT inline bool revealInDwarfmodeMap(df::coord pos, bool center = false, bool highlight = false) { return revealInDwarfmodeMap(pos.x, pos.y, pos.z, center, highlight); }; |
| 186 | DFHACK_EXPORT bool pauseRecenter(int32_t x, int32_t y, int32_t z, bool pause = true); |
| 187 | DFHACK_EXPORT inline bool pauseRecenter(df::coord pos, bool pause = true) { return pauseRecenter(pos.x, pos.y, pos.z, pause); }; |
| 188 | DFHACK_EXPORT bool refreshSidebar(); |
| 189 | |
| 190 | DFHACK_EXPORT bool inRenameBuilding(); |
no outgoing calls
no test coverage detected