ming_wm_lib/
framebuffer_types.rs

1pub type Point = [usize; 2]; //x, y
2pub type Dimensions = [usize; 2]; //width, height
3pub type RGBColor = [u8; 3]; //rgb
4