1pub mod render_passes;
2pub mod render_platform;
3pub mod renderer;
45//when we do "use crate::renderer::*" make it so that we can just use directly
6// the components without mentioning cam_comps for example
7pub use render_passes::*;
8pub use render_platform::*;
9pub use renderer::*;