mirror of
https://github.com/griffi-gh/kubi.git
synced 2024-11-26 00:38:44 -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]>;
|