blob: 5720e93e4e8f8a46aa1a47e76e4a5c82887422bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
|