mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-14 19:38:41 -06:00
5 lines
135 B
Rust
5 lines
135 B
Rust
use crate::block::Block;
|
|
|
|
pub const CHUNK_SIZE: usize = 32;
|
|
pub type BlockData = Box<[[[Block; CHUNK_SIZE]; CHUNK_SIZE]; CHUNK_SIZE]>;
|