logo
pub trait CollisionHandler<T: Aabb> {
    fn collide(&mut self, a: AabbPin<&mut T>, b: AabbPin<&mut T>);
}
Expand description

Shorthand for FnMut(AabbPin<&mut T>, AabbPin<&mut T>) trait bound

Required Methods

Implementors