vox/src/config.rs

6 lines
157 B
Rust

//! A few constants to make standardizing sizes easier.
pub const CHUNK_RADIUS: u8 = 3;
pub const CHUNK_HEIGHT: u8 = 4;
pub const PLAYER_HEIGHT: f64 = 1.7;