From 9a4cd221f8206fb1533937170f47dcd19d574ef1 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Fri, 14 Nov 2025 09:56:40 -0500 Subject: Remove wildcard exports/imports --- game/src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'game') diff --git a/game/src/main.rs b/game/src/main.rs index 4d67a52..b79331b 100644 --- a/game/src/main.rs +++ b/game/src/main.rs @@ -1,6 +1,6 @@ use argh::FromArgs; -use dungeon::*; -use graphics::*; +use dungeon::{Dungeon, player_input::PlayerInput, pos::Direction}; +use graphics::{Key, Window, WindowBuilder}; struct Game { window: Window, @@ -93,7 +93,7 @@ struct Args { seed: Option, } -fn main() -> Result<()> { +fn main() -> graphics::Result<()> { // Parse arguments let args: Args = argh::from_env(); // Load the window -- cgit v1.2.3-freya