diff options
Diffstat (limited to 'azalea-core/src/lib.rs')
| -rwxr-xr-x | azalea-core/src/lib.rs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/azalea-core/src/lib.rs b/azalea-core/src/lib.rs index c6b51cb1..d2a2d558 100755 --- a/azalea-core/src/lib.rs +++ b/azalea-core/src/lib.rs @@ -1,5 +1,7 @@ //! Random miscellaneous things like UUIDs that don't deserve their own crate. +#![feature(int_roundings)] + pub mod difficulty; pub mod game_type; pub mod resource_location; @@ -8,8 +10,8 @@ pub mod serializable_uuid; mod slot; pub use slot::{Slot, SlotData}; -mod block_pos; -pub use block_pos::BlockPos; +mod position; +pub use position::{BlockPos, ChunkBlockPos, ChunkPos, ChunkSectionBlockPos, ChunkSectionPos}; mod direction; pub use direction::Direction; |
