stage sweep

This commit is contained in:
Quaternions 2023-09-07 20:08:07 -07:00
parent 5391b635fb
commit fc751a9fe8

8
src/sweep.rs Normal file
View File

@ -0,0 +1,8 @@
//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
}
}