bool detectCollision(const Physics &obj1, const Physics &obj2)
Detects whether a collision has occurred between two objects given their Physics structs; this is don...
Definition: collider.cpp:4
bool detectCollisionSphere(const Physics &sphere, const Physics &obj)
Detects whether a collision has occurred between two objects given their Physics structs and that the...
Definition: collider.cpp:19
bool detectCollisionBox(const Physics &box, const Physics &obj)
Detects whether a collision has occurred between two objects given their Physics structs and that the...
Definition: collider.cpp:66
Collider
Enumeration to identify collider shape.
Definition: collider.hpp:10
Physics struct that contains all movement / collision related data for a particular object.
Definition: object.hpp:23