diff options
| author | EightFactorial <murphkev000@gmail.com> | 2023-02-21 10:13:06 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-21 12:13:06 -0600 |
| commit | d88ca2d86530e48f60fc1ff275de15a96e2a1779 (patch) | |
| tree | 4eabf98a6a3e20228bca36ff1984626a6191b62c /azalea-world/src | |
| parent | 71308ee0a3c2068bd135cd6731feae75710c58f2 (diff) | |
| download | azalea-drasl-d88ca2d86530e48f60fc1ff275de15a96e2a1779.tar.xz | |
Make things public (#71)
* Make struct data pub
* Add derives
* Rename packet fields
* Make Palette structs pub
Diffstat (limited to 'azalea-world/src')
| -rw-r--r-- | azalea-world/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
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::*; |
