From 018d7d4c06a354071f72c77dc03abbbe622fdc81 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Thu, 13 Nov 2025 09:35:30 -0500 Subject: dungeon: have Dungeon store the rng, not the Floor --- game/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'game/src') diff --git a/game/src/main.rs b/game/src/main.rs index 693e7f0..569d08a 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::default(); + let dungeon = Dungeon::random(); Self { window, dungeon, -- cgit v1.2.3-freya