/ src / display.rs
display.rs
1  pub struct Display;
2  
3  impl Display {
4      pub const WIDTH: u32 = 64;
5      pub const HEIGHT: u32 = 32;
6      pub const TICKS_PER_FRAME: usize = 1;
7      pub const SCALE: u32 = 25;
8  }