mila/
texture.rs

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