summaryrefslogtreecommitdiff
path: root/game
diff options
context:
space:
mode:
Diffstat (limited to 'game')
-rw-r--r--game/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/game/src/main.rs b/game/src/main.rs
index 252830a..fbb4ad1 100644
--- a/game/src/main.rs
+++ b/game/src/main.rs
@@ -3,7 +3,7 @@ use graphics::*;
fn main() {
let mut window = Window::new(720, 480, "game");
- let dungeon = Dungeon::new();
+ let dungeon = Dungeon::default();
while window.is_open() {
window.draw(&dungeon);
}