8 lines
227 B
Rust
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
|
|
}
|
|
} |