|
|
||
|---|---|---|
| .. | ||
| stack | ||
| LICENSE | ||
| README.md | ||
| maze-generator.go | ||
| screenshot.png | ||
README.md
Maze generator in Go
Created by Stephen Chavez
This uses the game engine: Pixel. Install it here: https://github.com/faiface/pixel
I made this to improve my understanding of Go and some game concepts with some basic maze generating algorithms.
Controls: Press 'R' to restart the maze.
Optional command-line arguments: go run ./maze-generator.go
-wsets the maze's width in pixels.-hsets the maze's height in pixels.-csets the maze cell's size in pixels.
Code based on the Recursive backtracker algorithm.