strafe-client-jed/src/sweep.rs
2023-09-08 11:38:47 -07:00

8 lines
227 B
Rust

//something that implements body + hitbox + transform can predict collision
impl crate::sweep::PredictCollision for Model {
fn predict_collision(&self,other:&Model) -> Option<crate::event::EventStruct> {
//math!
None
}
}