strafe-client-jed/src/sweep.rs

8 lines
227 B
Rust
Raw Normal View History

2023-09-08 03:08:07 +00:00
//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
}
}