aboutsummaryrefslogtreecommitdiff
path: root/src_testbed/lib.rs
diff options
context:
space:
mode:
authorrezural <rezural@protonmail.com>2020-12-19 21:54:38 +1100
committerrezural <rezural@protonmail.com>2020-12-20 14:45:59 +1100
commitbcaa1d13e8f95fb8dec2ba14b9d5f6d0dd3261fb (patch)
tree7461e7d5270a67724d2de7cc13d3381df4620708 /src_testbed/lib.rs
parentff28b90833243c463d855eb12ce727c56310982d (diff)
downloadrapier-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.rs3
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;