mirror of
https://github.com/neocturne/MinedMap.git
synced 2025-03-06 01:54:51 +01:00
10 lines
246 B
Rust
10 lines
246 B
Rust
|
pub const CHUNKS_PER_REGION: u8 = 32;
|
||
|
|
||
|
/// A chunk X coordinate relative to a region
|
||
|
#[derive(Debug, Clone, Copy)]
|
||
|
pub struct ChunkX(pub u8);
|
||
|
|
||
|
/// A chunk Z coordinate relative to a region
|
||
|
#[derive(Debug, Clone, Copy)]
|
||
|
pub struct ChunkZ(pub u8);
|