diff options
| author | Sébastien Crozet <developer@crozet.re> | 2020-08-25 22:10:25 +0200 |
|---|---|---|
| committer | Sébastien Crozet <developer@crozet.re> | 2020-08-25 22:10:25 +0200 |
| commit | 754a48b7ff6d8c58b1ee08651e60112900b60455 (patch) | |
| tree | 7d777a6c003f1f5d8f8d24f533f35a95a88957fe /src/pipeline/mod.rs | |
| download | rapier-0.1.0.tar.gz rapier-0.1.0.tar.bz2 rapier-0.1.0.zip | |
First public release of Rapier.v0.1.0
Diffstat (limited to 'src/pipeline/mod.rs')
| -rw-r--r-- | src/pipeline/mod.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/pipeline/mod.rs b/src/pipeline/mod.rs new file mode 100644 index 0000000..6298d18 --- /dev/null +++ b/src/pipeline/mod.rs @@ -0,0 +1,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; |
