A maze generator made in go.
- CLI
<command> <algo:-recursive-backtracking>
-w|--width=<number:-10>
-h|--height=<number:-w>
-bg|--background=<hex:-#fff>
-wc|--wall-color=<hex:-#000>
-sc|--start-color=<hex:-00c8ff>
-ec|--end-color=<hex:-ffc800>
-s|--block-size=<number:-25>
-p|--padding=<number:-3>
- maze recursive-backtracking
- maze prim's
- maze kruskal
- maze aldous-broder
- maze hunt-and-kill
- maze sidewinder
- only right(2⁰) / bottom(2¹) walls on each cells (bitwise operations using 1 uint8, or use 2 bool)