summaryrefslogtreecommitdiff
path: root/src/config.rs
blob: 8e8f7a106e472fd9f717b8a41d72fb2b3a5195c8 (plain)
1
2
3
4
5
6
pub const WINDOW_TITLE: &str = "pxs";

pub const CHUNK_SIZE: i32 = 32;
pub const CELLS_IN_CHUNK: usize = (CHUNK_SIZE * CHUNK_SIZE) as usize;

pub const CAMERA_MOVEMENT_SPEED: f32 = 10.0;