diff options
| author | rezural <rezural@protonmail.com> | 2020-12-19 21:54:38 +1100 |
|---|---|---|
| committer | rezural <rezural@protonmail.com> | 2020-12-20 14:45:59 +1100 |
| commit | bcaa1d13e8f95fb8dec2ba14b9d5f6d0dd3261fb (patch) | |
| tree | 7461e7d5270a67724d2de7cc13d3381df4620708 /src_testbed/lib.rs | |
| parent | ff28b90833243c463d855eb12ce727c56310982d (diff) | |
| download | rapier-bcaa1d13e8f95fb8dec2ba14b9d5f6d0dd3261fb.tar.gz rapier-bcaa1d13e8f95fb8dec2ba14b9d5f6d0dd3261fb.tar.bz2 rapier-bcaa1d13e8f95fb8dec2ba14b9d5f6d0dd3261fb.zip | |
extract PhysicsState, PhysicsSnapshot & PhysicsEvents
cargo fmt
changes to make rapier compile
Diffstat (limited to 'src_testbed/lib.rs')
| -rw-r--r-- | src_testbed/lib.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src_testbed/lib.rs b/src_testbed/lib.rs index 21ac06a..e7475f0 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::plugin::TestbedPlugin; -pub use crate::testbed::{PhysicsState, Testbed}; +pub use crate::testbed::Testbed; #[cfg(all(feature = "dim2", feature = "other-backends"))] mod box2d_backend; @@ -31,6 +31,7 @@ mod engine; #[cfg(feature = "other-backends")] mod nphysics_backend; pub mod objects; +mod physics; #[cfg(all(feature = "dim3", feature = "other-backends"))] mod physx_backend; mod plugin; |
