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 --- dungeon/src/lib.rs | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'dungeon/src/lib.rs') diff --git a/dungeon/src/lib.rs b/dungeon/src/lib.rs index b96cb83..a475f95 100644 --- a/dungeon/src/lib.rs +++ b/dungeon/src/lib.rs @@ -8,17 +8,18 @@ pub mod map; pub mod player_input; pub mod pos; -pub use bsp::*; -pub use entity::*; -pub use map::*; -pub use player_input::*; -pub use pos::*; - use rand::{ SeedableRng, TryRngCore, rngs::{OsRng, SmallRng}, }; +use crate::{ + entity::{Entity, Player}, + map::Floor, + player_input::PlayerInput, + pos::FPos, +}; + /// The `Dungeon` type represents the game state of the /// dungeon crawler. #[derive(Debug, Clone)] -- cgit v1.2.3-freya