post-push-party 0.1.6

Push code, earn points, throw a party!
Documentation
1
2
3
4
5
6
7
8
9
10
11
// these defs are here so that examples work without having to turn
// the whole thing into a library
pub mod party {
    pub mod fireworks {
        mod renderer;
        mod runner;
        mod sim;

        pub use runner::run;
    }
}