aboutsummaryrefslogtreecommitdiff
path: root/azalea-core/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-core/src/lib.rs')
-rwxr-xr-xazalea-core/src/lib.rs12
1 files changed, 8 insertions, 4 deletions
diff --git a/azalea-core/src/lib.rs b/azalea-core/src/lib.rs
index 41c901c8..a1fa1fca 100755
--- a/azalea-core/src/lib.rs
+++ b/azalea-core/src/lib.rs
@@ -2,10 +2,14 @@
#![feature(int_roundings)]
-pub mod difficulty;
-pub mod game_type;
-pub mod resource_location;
-pub mod serializable_uuid;
+mod difficulty;
+pub use difficulty::*;
+
+mod resource_location;
+pub use resource_location::*;
+
+mod game_type;
+pub use game_type::*;
mod slot;
pub use slot::{Slot, SlotData};