resphys 0.1.0

Simple 2D AABB only game collision detection/resolution engine.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod collision;
mod event;
mod object;
mod world;

pub use self::collision::*;
pub use self::event::ContactEvent;
pub use self::object::*;
pub use self::world::*;

// TODO: tests once public API is more defined...
#[cfg(test)]
mod tests {
    #[test]
    fn todo() {
        assert_eq!(2 + 2, 4);
    }
}