library: material: do not expose sub-modules

This commit is contained in:
Bruno BELANYI 2020-03-23 12:27:04 +01:00 committed by Antoine Martin
parent f8102ddb3b
commit bef61b43b8

View file

@ -22,5 +22,5 @@ pub trait Material: std::fmt::Debug {
fn properties(&self, point: Point2D) -> LightProperties; fn properties(&self, point: Point2D) -> LightProperties;
} }
pub mod uniform; mod uniform;
pub use uniform::*; pub use uniform::*;