bevy/src/render/mod.rs
Carter Anderson f84e71d051 cargo fmt
2020-02-22 15:02:01 -08:00

17 lines
236 B
Rust

pub mod camera;
pub mod render_graph;
pub mod shader;
pub mod shader_reflect;
mod color;
mod light;
mod vertex;
pub use camera::*;
pub use color::*;
pub use light::*;
pub use shader::*;
pub use vertex::Vertex;
pub struct Instanced;