Can now script maze gen with a json.

This commit is contained in:
Zed A. Shaw 2026-03-13 01:55:26 -04:00
parent a71d6340db
commit c615f4fc1e
3 changed files with 79 additions and 10 deletions

View file

@ -46,4 +46,6 @@ namespace maze {
void punch_dead_end(size_t at_x, size_t at_y, size_t x, size_t y);
void in_bounds(size_t x, size_t y);
};
std::pair<Builder, bool> script(Map& map, nlohmann::json& config);
}