summaryrefslogtreecommitdiff
path: root/src/config.rs
blob: 54ec6b5722d2e04eb94f2a1c96f9035e9ed7a82d (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 = 40.0;