diff options
Diffstat (limited to 'game')
| -rw-r--r-- | game/src/main.rs | 6 |
1 files changed, 3 insertions, 3 deletions
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<u64>, } -fn main() -> Result<()> { +fn main() -> graphics::Result<()> { // Parse arguments let args: Args = argh::from_env(); // Load the window |