https://github.com/voidc/jmaze
Java maze generation application
https://github.com/voidc/jmaze
Last synced: 10 months ago
JSON representation
Java maze generation application
- Host: GitHub
- URL: https://github.com/voidc/jmaze
- Owner: voidc
- Created: 2014-09-28T18:36:35.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-09-28T18:53:03.000Z (almost 12 years ago)
- Last Synced: 2025-03-30T01:18:14.172Z (over 1 year ago)
- Language: Java
- Size: 141 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
JMaze
=====
Java maze generation application
# How to use
1. create a new maze generator:
`MazeGenerator mazeGen = new MazeGenerator();`
2. generate a new maze:
`Maze maze = mazeGen.generate(width, height);`
3. save your maze:
`MazeIO.saveMazeToFile(maze);`