diff options
| author | Sébastien Crozet <developer@crozet.re> | 2020-12-22 16:23:41 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-22 16:23:41 +0100 |
| commit | fd3b4801b63fd56369ff37bdc2e5189db159e8ff (patch) | |
| tree | a2017a39480dcd9045da00dbf0ff9c60d6b16259 /src_testbed/lib.rs | |
| parent | d7cd20d3e4b0fdd963705bbef42520dc05811a56 (diff) | |
| parent | 496f4e32588d4f5efd821e7834ddd0d7b0dd1acc (diff) | |
| download | rapier-fd3b4801b63fd56369ff37bdc2e5189db159e8ff.tar.gz rapier-fd3b4801b63fd56369ff37bdc2e5189db159e8ff.tar.bz2 rapier-fd3b4801b63fd56369ff37bdc2e5189db159e8ff.zip | |
Merge pull request #81 from rezural/harness
Introduce a run harness, to make running salva with rapier easier with headless.
Diffstat (limited to 'src_testbed/lib.rs')
| -rw-r--r-- | src_testbed/lib.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src_testbed/lib.rs b/src_testbed/lib.rs index e7475f0..5358e7c 100644 --- a/src_testbed/lib.rs +++ b/src_testbed/lib.rs @@ -22,16 +22,19 @@ extern crate bitflags; extern crate log; pub use crate::engine::GraphicsManager; +pub use crate::harness::plugin::HarnessPlugin; +pub use crate::physics::PhysicsState; pub use crate::plugin::TestbedPlugin; pub use crate::testbed::Testbed; #[cfg(all(feature = "dim2", feature = "other-backends"))] mod box2d_backend; mod engine; +pub mod harness; #[cfg(feature = "other-backends")] mod nphysics_backend; pub mod objects; -mod physics; +pub mod physics; #[cfg(all(feature = "dim3", feature = "other-backends"))] mod physx_backend; mod plugin; |
