diff options
Diffstat (limited to 'dungeon/src/lib.rs')
| -rw-r--r-- | dungeon/src/lib.rs | 13 |
1 files changed, 7 insertions, 6 deletions
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)] |