Advertisement
Conderoga

Untitled

Dec 14th, 2011
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1.  
  2. public class MazeTester {
  3. public static void main(String [] args){
  4. Maze maze = new Maze(10,10);
  5. boolean [][] test = {{false,true,true,true},
  6. {true,false,true,true},
  7. {false,true,false,true},
  8. {true,true,false,true},
  9. {false,true,true,true},
  10. {true,true,true,true},
  11. {false,true,true,true}};
  12. //maze.setMaze(test);
  13. maze.generateMaze();
  14. System.out.println(maze.printMaze());
  15. }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement