auburn 0.1.4

Fast and simple physics library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use super::*;

mod ball2d;
mod box2d;
mod ellipse2d;
mod point2d;
mod rounded_box2d;
#[cfg(feature = "tilemap")]
mod tilemap;

pub use box2d::*;
pub use rounded_box2d::*;
#[cfg(feature = "tilemap")]
pub use tilemap::*;