Advertisement
Guest User

Untitled

a guest
Apr 24th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. public static void main(String[] args) throws FileNotFoundException {
  2.  
  3. final String FILE_NAME = "data/maze21.txt"; //PUT THE FILE PATH HERE!!
  4. boolean[][] maze = testreadmaze(FILE_NAME);
  5.  
  6.  
  7. mazepublic = maze;
  8.  
  9.  
  10. JFrame f = new JFrame("Maze");
  11. f.setSize(len*20+16, len*20+39);
  12. f.add(new Exercise4());
  13. f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  14. f.setVisible(true);
  15.  
  16.  
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement