aboutsummaryrefslogtreecommitdiff
path: root/src/pipeline/mod.rs
blob: 6298d1845c12afb2f4c922c9d7ba38c96ba27144 (plain)
1
2
3
4
5
6
7
8
9
//! Structure for combining the various physics components to perform an actual simulation.

pub use collision_pipeline::CollisionPipeline;
pub use event_handler::{ChannelEventCollector, EventHandler};
pub use physics_pipeline::PhysicsPipeline;

mod collision_pipeline;
mod event_handler;
mod physics_pipeline;