bevy/crates/bevy_render/src/shader/mod.rs
2020-08-16 07:20:06 -07:00

9 lines
155 B
Rust

#[allow(clippy::module_inception)]
mod shader;
mod shader_defs;
mod shader_reflect;
pub use shader::*;
pub use shader_defs::*;
pub use shader_reflect::*;