diff options
| author | mat <github@matdoes.dev> | 2022-05-14 15:02:13 -0500 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-05-14 15:02:13 -0500 |
| commit | e58c9390a717517db0bf4366c55a3802c832b144 (patch) | |
| tree | a55bdc2d8fe40786ce475cc6c124134b419f3aa6 /azalea-core/src/lib.rs | |
| parent | 6d2fd8afbad44bbe88f701e1d67cc2f251246c07 (diff) | |
| download | azalea-drasl-e58c9390a717517db0bf4366c55a3802c832b144.tar.xz | |
get_block_state works
Diffstat (limited to 'azalea-core/src/lib.rs')
| -rwxr-xr-x | azalea-core/src/lib.rs | 4 |
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; |
