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

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

pub const CAMERA_MOVEMENT_SPEED: f32 = 10.0;