1
2
3
4
5
6
pub struct Texture {
    pub filename: String,
    pub height: usize,
    pub width: usize,
    pub pixel_data: Vec<u8>,
}