ants/src/constants.rs

7 lines
220 B
Rust
Raw Normal View History

2021-10-03 19:49:30 +00:00
use macroquad::color::Color;
pub static ANT_SPEED: f32 = 20.;
pub static FLOOR_COLOR: Color = Color::new(0.46666667, 0.38431373, 0.3019608, 1.);
2021-10-03 20:23:57 +00:00
pub static SCREEN_WIDTH: i32 = 1280;
pub static SCREEN_HEIGHT: i32 = 720;