| 1017 | } |
| 1018 | |
| 1019 | uint16_t Maps::getWalkableGroup(df::coord pos) { |
| 1020 | auto block = getTileBlock(pos); |
| 1021 | return block ? index_tile(block->walkable, pos) : 0; |
| 1022 | } |
| 1023 | |
| 1024 | bool Maps::canWalkBetween(df::coord pos1, df::coord pos2) |
| 1025 | { |
nothing calls this directly
no test coverage detected