diff options
Diffstat (limited to 'src/chunk-region.hpp')
-rw-r--r-- | src/chunk-region.hpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/chunk-region.hpp b/src/chunk-region.hpp new file mode 100644 index 00000000..5720e93e --- /dev/null +++ b/src/chunk-region.hpp @@ -0,0 +1,13 @@ +#pragma once +#include "chunk.hpp" +#include "path-search.hpp" +#include <bitset> + +namespace floormat { + +struct chunk::pass_region +{ + std::bitset<detail_astar::div_count.product()> bits; +}; + +} // namespace floormat |