| 136 | } |
| 137 | |
| 138 | bool Units::isVisible(df::unit *unit) { |
| 139 | CHECK_NULL_POINTER(unit); |
| 140 | return Maps::isTileVisible(getPosition(unit)); |
| 141 | } |
| 142 | |
| 143 | bool Units::isCitizen(df::unit *unit, bool include_insane) { |
| 144 | CHECK_NULL_POINTER(unit); |
nothing calls this directly
no test coverage detected