psychopath/src/scene/mod.rs
Nathan Vegdahl f4445417dc Reorganizing the module tree.
Enough things had accumulated that it seemed to make sense to
group some stuff together.  So here it is.
2017-02-14 00:14:08 -08:00

8 lines
168 B
Rust

mod assembly;
mod scene;
mod world;
pub use self::assembly::{Assembly, AssemblyBuilder, Object, InstanceType};
pub use self::scene::Scene;
pub use self::world::World;