diff options
| author | mat <github@matdoes.dev> | 2022-05-03 22:48:57 -0500 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-05-03 22:48:57 -0500 |
| commit | 18dc3a84d4b58a58085682cc97f1b52ffee5091c (patch) | |
| tree | d96d2cf7214398e10d7a3c96c09eae3063a46b22 /azalea-world/src/lib.rs | |
| parent | c9878129274258a30dc3ee0ecbd064b4fcf9bc6e (diff) | |
| download | azalea-drasl-18dc3a84d4b58a58085682cc97f1b52ffee5091c.tar.xz | |
start adding bit storage
Diffstat (limited to 'azalea-world/src/lib.rs')
| -rw-r--r-- | azalea-world/src/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/azalea-world/src/lib.rs b/azalea-world/src/lib.rs index ea7798f8..54961401 100644 --- a/azalea-world/src/lib.rs +++ b/azalea-world/src/lib.rs @@ -1,7 +1,9 @@ +mod bit_storage; mod palette; use azalea_core::ChunkPos; use azalea_protocol::mc_buf::{McBufReadable, McBufWritable}; +pub use bit_storage::BitStorage; use palette::PalettedContainer; use std::{ io::{Read, Write}, |
