aboutsummaryrefslogtreecommitdiff
path: root/azalea-core/src/lib.rs
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2022-05-14 15:02:13 -0500
committermat <github@matdoes.dev>2022-05-14 15:02:13 -0500
commite58c9390a717517db0bf4366c55a3802c832b144 (patch)
treea55bdc2d8fe40786ce475cc6c124134b419f3aa6 /azalea-core/src/lib.rs
parent6d2fd8afbad44bbe88f701e1d67cc2f251246c07 (diff)
downloadazalea-drasl-e58c9390a717517db0bf4366c55a3802c832b144.tar.xz
get_block_state works
Diffstat (limited to 'azalea-core/src/lib.rs')
-rwxr-xr-xazalea-core/src/lib.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/azalea-core/src/lib.rs b/azalea-core/src/lib.rs
index 2b12db53..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;
@@ -9,7 +11,7 @@ mod slot;
pub use slot::{Slot, SlotData};
mod position;
-pub use position::{BlockPos, ChunkPos, ChunkSectionBlockPos, ChunkSectionPos};
+pub use position::{BlockPos, ChunkBlockPos, ChunkPos, ChunkSectionBlockPos, ChunkSectionPos};
mod direction;
pub use direction::Direction;