mirror of
https://github.com/kristoferssolo/maze-ascension.git
synced 2025-10-21 19:20:34 +00:00
6 lines
261 B
Rust
6 lines
261 B
Rust
pub const MOVEMENT_THRESHOLD: f32 = 0.01;
|
|
pub const WALL_OVERLAP_MODIFIER: f32 = 1.25;
|
|
pub const FLOOR_Y_OFFSET: u8 = 200;
|
|
pub const MOVEMENT_COOLDOWN: f32 = 1.0; // one second cooldown
|
|
pub const TITLE: &'static str = "Maze Ascension: The Labyrinth of Echoes";
|