1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-04-24 13:37:44 +00:00

Make texture struct members public

This commit is contained in:
Joshua Goins 2022-08-11 15:48:28 -04:00
parent 06226cfad1
commit 3b2038024f

View file

@ -62,9 +62,9 @@ struct TexHeader {
} }
pub struct Texture { pub struct Texture {
width: u32, pub width: u32,
height: u32, pub height: u32,
rgba: Vec<u8> pub rgba: Vec<u8>
} }
impl Texture { impl Texture {