1// these defs are here so that examples work without having to turn 2// the whole thing into a library 3pub mod party { 4 pub mod fireworks { 5 mod renderer; 6 mod runner; 7 mod sim; 8 9 pub use runner::run; 10 } 11}