1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-04-21 20:27:46 +00:00

Make material struct members public

This commit is contained in:
Joshua Goins 2022-08-11 15:51:39 -04:00
parent 3b2038024f
commit 209b475065

View file

@ -110,7 +110,7 @@ struct MaterialData {
#[derive(Debug)] #[derive(Debug)]
pub struct Material { pub struct Material {
texture_paths: Vec<String> pub texture_paths: Vec<String>
} }
impl Material { impl Material {