package technology.zim //Build the maze //Options: //DFS - Long corridors //Prim's - Solid maze //Wall-builder? //https://emmilco.github.io/path_finder/ //Needs https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/PriorityQueue.html //and https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/util/Comparator.html //http://weblog.jamisbuck.org/2011/1/10/maze-generation-prim-s-algorithm //http://weblog.jamisbuck.org/2011/1/3/maze-generation-kruskal-s-algorithm class Mazefinder { }