1
2
3
4
5
6
7
8
9
#[cfg(feature = "dim2")]
pub extern crate rapier2d as rapier;
#[cfg(feature = "dim3")]
pub extern crate rapier3d as rapier;

pub mod physics;

#[cfg(feature = "render")]
pub mod render;