diff options
Diffstat (limited to 'game/src/main.rs')
| -rw-r--r-- | game/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/game/src/main.rs b/game/src/main.rs index 28498dc..693e7f0 100644 --- a/game/src/main.rs +++ b/game/src/main.rs @@ -12,7 +12,7 @@ struct Game { impl Game { fn new(window: Window) -> Self { // Initial game state - let dungeon = Dungeon::new(); + let dungeon = Dungeon::default(); Self { window, dungeon, |