summaryrefslogtreecommitdiff
path: root/dungeon/src/lib.rs
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-11-14 09:56:40 -0500
committerFreya Murphy <freya@freyacat.org>2025-11-14 10:01:13 -0500
commit9a4cd221f8206fb1533937170f47dcd19d574ef1 (patch)
tree14d7c270d3f621070f75b878c5df4a7b872c8008 /dungeon/src/lib.rs
parentEnable more clippy lints (diff)
downloadDungeonCrawl-9a4cd221f8206fb1533937170f47dcd19d574ef1.tar.gz
DungeonCrawl-9a4cd221f8206fb1533937170f47dcd19d574ef1.tar.bz2
DungeonCrawl-9a4cd221f8206fb1533937170f47dcd19d574ef1.zip
Remove wildcard exports/imports
Diffstat (limited to 'dungeon/src/lib.rs')
-rw-r--r--dungeon/src/lib.rs13
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)]