Skip to content

Commit 43cf624

Browse files
Update README
1 parent a7deaba commit 43cf624

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

README.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,15 @@
11
# 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)

docs/java-maze.png

28.5 KB
Loading

src/be/dylanvanassche/maze/view/MainFrame.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ public MainFrame(final Controller c) {
4444
this.setJMenuBar(new MenuBar(this.getController()));
4545
this.pack();
4646
this.setResizable(false);
47+
this.setTitle(this.getController().getName());
4748
this.setVisible(true);
4849
}
4950

0 commit comments

Comments
 (0)