summaryrefslogtreecommitdiff
path: root/game
diff options
context:
space:
mode:
authorAudrey L Fuller <alf9310@g.rit.edu>2025-10-30 17:16:55 +0000
committerAudrey L Fuller <alf9310@g.rit.edu>2025-10-30 17:16:55 +0000
commitbe95ac14a8ca62c505028707bb9be1b3c71c5455 (patch)
tree9ce380df206cb456e3c62d7e50e170e699a3e1e6 /game
parentgraphics: add docs to AtlasTexture (diff)
downloadDungeonCrawl-be95ac14a8ca62c505028707bb9be1b3c71c5455.tar.gz
DungeonCrawl-be95ac14a8ca62c505028707bb9be1b3c71c5455.tar.bz2
DungeonCrawl-be95ac14a8ca62c505028707bb9be1b3c71c5455.zip
Wave function collapse
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 c13fc20..22203c3 100644
--- a/game/src/main.rs
+++ b/game/src/main.rs
@@ -5,7 +5,7 @@ fn main() -> Result<()> {
// Load the window
let mut window = Window::new(720, 480, "game")?;
// Initial game state
- let dungeon = Dungeon::default();
+ let dungeon = Dungeon::new();
// Main game loop
while window.is_open() {