diff options
Diffstat (limited to 'dungeon/src/lib.rs')
| -rw-r--r-- | dungeon/src/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dungeon/src/lib.rs b/dungeon/src/lib.rs index 0e1a501..39d7c60 100644 --- a/dungeon/src/lib.rs +++ b/dungeon/src/lib.rs @@ -1,11 +1,12 @@ //! The `dungon` crate contains the core functionality for //! interacting with a `Dungeon` and its components. +mod bsp; mod entity; mod map; mod pos; -mod wfc; +pub use bsp::*; pub use entity::*; pub use map::*; pub use pos::*; |