diff options
Diffstat (limited to 'azalea-world/src/lib.rs')
| -rw-r--r-- | azalea-world/src/lib.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/azalea-world/src/lib.rs b/azalea-world/src/lib.rs index 0d80f75d..55e47676 100644 --- a/azalea-world/src/lib.rs +++ b/azalea-world/src/lib.rs @@ -3,7 +3,7 @@ #![feature(error_generic_member_access)] mod bit_storage; -mod chunk_storage; +pub mod chunk_storage; mod container; pub mod heightmap; pub mod iterators; @@ -13,9 +13,7 @@ mod world; use std::backtrace::Backtrace; pub use bit_storage::BitStorage; -pub use chunk_storage::{ - calculate_chunk_storage_range, Chunk, ChunkStorage, PartialChunkStorage, Section, -}; +pub use chunk_storage::{Chunk, ChunkStorage, PartialChunkStorage, Section}; pub use container::*; use thiserror::Error; pub use world::*; |
