Skip to content
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.

Commit

Permalink
set Chunk & ChunkColumn accesible in light.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitriTimoz committed Dec 24, 2023
1 parent ab8c09b commit 9e0bfce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions minecraft-server/src/world/map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pub struct WorldMap {
}

#[derive(Clone)]
struct Chunk {
pub(super) struct Chunk {
data: NetworkChunk,
palette_block_counts: Vec<u16>,
}
Expand Down Expand Up @@ -169,7 +169,7 @@ impl Chunk {
}
}

struct ChunkColumn {
pub(super) struct ChunkColumn {
chunks: Vec<Chunk>,
}

Expand Down

0 comments on commit 9e0bfce

Please sign in to comment.