File tree Expand file tree Collapse file tree 3 files changed +15
-1
lines changed
src/be/dylanvanassche/maze/view Expand file tree Collapse file tree 3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 1
1
# java-maze
2
- A simple maze game written in Java following the MVC principles
2
+ A simple maze game written in Java following the MVC principles.
3
+
4
+ ## Features
5
+ - MVC principles written in Java
6
+ - Find the gold in the maze
7
+ - Full GUI
8
+ - Player name
9
+
10
+ ## To do
11
+ - Backtracking algorithm to generate a solvable maze.
12
+ - Key bindings for the navigation of the player.
13
+
14
+ ## Screenshots
15
+ ![ screenshot1] ( /docs/java-maze.png )
Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ public MainFrame(final Controller c) {
44
44
this .setJMenuBar (new MenuBar (this .getController ()));
45
45
this .pack ();
46
46
this .setResizable (false );
47
+ this .setTitle (this .getController ().getName ());
47
48
this .setVisible (true );
48
49
}
49
50
You can’t perform that action at this time.
0 commit comments