An open API service indexing awesome lists of open source software.

https://github.com/themarlboroman/java-maze

Quick port of the js-maze to Java
https://github.com/themarlboroman/java-maze

generator java maze port

Last synced: about 2 months ago
JSON representation

Quick port of the js-maze to Java

Awesome Lists containing this project

README

        

java-maze
=========

# About

Couldn't help to do a quick port of js-maze to Java.

# Build

javac -cp src/ -d lib/ src/net/caballorenoir/maze/main.java

# Run

java -cp lib/ net.caballorenoir.maze.main

# Create JAR file.

After building:

jar cfv maze.jar lib
jar cfm maze.jar manifest.txt

# Run JAR file.

java -jar maze.jar

# TODO:

- Do the graphic part right, using multithreading.
- Plug other generators.