From d88ca2d86530e48f60fc1ff275de15a96e2a1779 Mon Sep 17 00:00:00 2001 From: EightFactorial Date: Tue, 21 Feb 2023 10:13:06 -0800 Subject: Make things public (#71) * Make struct data pub * Add derives * Rename packet fields * Make Palette structs pub --- azalea-world/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'azalea-world/src') diff --git a/azalea-world/src/lib.rs b/azalea-world/src/lib.rs index f0fd5387..1a419c3a 100644 --- a/azalea-world/src/lib.rs +++ b/azalea-world/src/lib.rs @@ -7,13 +7,13 @@ mod bit_storage; mod chunk_storage; mod container; pub mod entity; -mod palette; +pub mod palette; mod world; use std::backtrace::Backtrace; pub use bit_storage::BitStorage; -pub use chunk_storage::{Chunk, ChunkStorage, PartialChunkStorage}; +pub use chunk_storage::{Chunk, ChunkStorage, PartialChunkStorage, Section}; pub use container::*; use thiserror::Error; pub use world::*; -- cgit v1.2.3