|
Maze Builder Docs 8.2.1
|
#include <type_traits>Go to the source code of this file.
Enumerations | |
| enum class | mazes::barrier : char { HORIZONTAL = '-' , VERTICAL = '|' , CORNER = '+' , SINGLE_SPACE = ' ' } |
| Character representations of walls and barriers in the maze. | |
| enum class | mazes::direction : int { NORTH = 0 , SOUTH = 1 , EAST = 2 , WEST = 3 } |
| Directional neighbors for grid topology. | |