pathtracer/src/render/mod.rs
2020-03-23 12:44:17 +01:00

11 lines
144 B
Rust

//! Rendering logic
pub mod light_aggregate;
pub use light_aggregate::*;
pub mod object;
pub use object::*;
pub mod scene;
pub use scene::*;