14 lines
331 B
C
14 lines
331 B
C
#pragma once
|
|
|
|
/**
|
|
* @brief N-Dimensional Wave Function Collapse (WFC) Library
|
|
*
|
|
* A templated WFC engine that can work with 2D grids, 3D grids, Sudoku, Picross, etc.
|
|
* The engine is coordinate-system agnostic and can work with any graph-like structure.
|
|
*/
|
|
|
|
#include "wfc.hpp"
|
|
#include "worlds.hpp"
|
|
#include "wfc_builder.hpp"
|
|
|