diff options
| author | rezural <rezural@protonmail.com> | 2020-12-20 23:58:50 +1100 |
|---|---|---|
| committer | rezural <rezural@protonmail.com> | 2020-12-21 04:23:11 +1100 |
| commit | be07227e9455e1549f1fee2f278ab2a266c5c3c2 (patch) | |
| tree | a2a0c78d6f6fcac69fa54dd226a08c24a5c3fbd8 /src_testbed/lib.rs | |
| parent | 315b84a85e67077d5e5232f3c3f4f3d80b85db81 (diff) | |
| download | rapier-be07227e9455e1549f1fee2f278ab2a266c5c3c2.tar.gz rapier-be07227e9455e1549f1fee2f278ab2a266c5c3c2.tar.bz2 rapier-be07227e9455e1549f1fee2f278ab2a266c5c3c2.zip | |
add HarnessState to callbacks, move HarnessPlugin to src_testbed/harness/plugin
Diffstat (limited to 'src_testbed/lib.rs')
| -rw-r--r-- | src_testbed/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src_testbed/lib.rs b/src_testbed/lib.rs index 9b08330..daf364b 100644 --- a/src_testbed/lib.rs +++ b/src_testbed/lib.rs @@ -23,7 +23,7 @@ extern crate log; pub use crate::engine::GraphicsManager; pub use crate::physics::PhysicsState; -pub use crate::plugin::HarnessPlugin; +pub use crate::harness::plugin::HarnessPlugin; pub use crate::plugin::TestbedPlugin; pub use crate::testbed::Testbed; @@ -34,7 +34,7 @@ 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; |
