From befa33a87950b6d0f3364cb4fe603f6d84bf4b8f Mon Sep 17 00:00:00 2001 From: mat Date: Sun, 1 Oct 2023 15:19:13 -0500 Subject: organize azalea_core and re-export it from azalea --- azalea-core/src/lib.rs | 43 +++++++++++-------------------------------- 1 file changed, 11 insertions(+), 32 deletions(-) (limited to 'azalea-core/src/lib.rs') diff --git a/azalea-core/src/lib.rs b/azalea-core/src/lib.rs index 6554d71d..2595471d 100755 --- a/azalea-core/src/lib.rs +++ b/azalea-core/src/lib.rs @@ -5,37 +5,16 @@ #![allow(incomplete_features)] #![feature(generic_const_exprs)] -mod difficulty; -pub use difficulty::*; - -mod resource_location; -pub use resource_location::*; - -mod game_type; -pub use game_type::*; - -mod position; -pub use position::*; - -mod direction; -pub use direction::*; - -mod delta; -pub use delta::*; - -pub mod particle; - -mod cursor3d; -pub use cursor3d::*; - -mod bitset; -pub use bitset::*; - -mod aabb; -pub use aabb::*; - -mod block_hit_result; -pub use block_hit_result::*; - +pub mod aabb; +pub mod bitset; +pub mod block_hit_result; +pub mod cursor3d; +pub mod delta; +pub mod difficulty; +pub mod direction; +pub mod game_type; pub mod math; +pub mod particle; +pub mod position; +pub mod resource_location; pub mod tier; -- cgit v1.2.3