pathtracer/pathtracer/src/scene/mod.rs
2020-03-29 20:41:19 +02:00

14 lines
181 B
Rust

//! Desciption of the scene.
pub mod light_aggregate;
pub use light_aggregate::*;
mod mesh;
pub use mesh::*;
pub mod object;
pub use object::*;
pub mod scene;
pub use scene::*;