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

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

pub const CAMERA_MOVEMENT_SPEED: f32 = 40.0;

pub const SIM_FPS: u32 = 120;