aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorSébastien Crozet <developer@crozet.re>2022-10-02 19:08:07 +0200
committerGitHub <noreply@github.com>2022-10-02 19:08:07 +0200
commitc755109ec963116f246abf02041735c8c4320ceb (patch)
tree09bc63fe9ef31990f43feb3fcac36864f1665595 /src/lib.rs
parenta1802323285622e0626cd69c7ea3b3ca60638b2e (diff)
parentf7bec3c49cf6ca24d2878a9dcd20656d26de5cc7 (diff)
downloadrapier-c755109ec963116f246abf02041735c8c4320ceb.tar.gz
rapier-c755109ec963116f246abf02041735c8c4320ceb.tar.bz2
rapier-c755109ec963116f246abf02041735c8c4320ceb.zip
Merge pull request #394 from dimforge/character-controller
Add a character controller implementation
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 586b3f5..0c640c7 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -130,6 +130,7 @@ pub(crate) const INVALID_USIZE: usize = INVALID_U32 as usize;
/// The string version of Rapier.
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
+pub mod control;
pub mod counters;
pub mod data;
pub mod dynamics;