From 7a62b8e86bc52cdac42c2ad1a5f79766b7bed8f9 Mon Sep 17 00:00:00 2001 From: alf9310 Date: Tue, 7 Oct 2025 12:35:45 -0400 Subject: Stubbed out some draw functions --- game/src/main.rs | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'game/src') diff --git a/game/src/main.rs b/game/src/main.rs index fbb4ad1..355741b 100644 --- a/game/src/main.rs +++ b/game/src/main.rs @@ -3,8 +3,13 @@ use graphics::*; fn main() { let mut window = Window::new(720, 480, "game"); + // Initial game state let dungeon = Dungeon::default(); + + // Main game loop while window.is_open() { + // TODO update game state + // Draw a single frame window.draw(&dungeon); } } -- cgit v1.2.3-freya