| 6 | constexpr uint8_t kHeightmapMarkedFlag = (1 << 7); |
| 7 | |
| 8 | void HeightMap::resetMarkerFlags() |
| 9 | { |
| 10 | std::for_each_n(data(), size(), [](uint8_t& value) { value &= ~kHeightmapMarkedFlag; }); |
| 11 | } |
| 12 | |
| 13 | uint8_t HeightMap::getHeight(TilePos2 pos) const |
| 14 | { |
no outgoing calls
no test coverage detected