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