#include "math/vector.hpp"
Go to the source code of this file.
Classes | |
class | CollisionHit |
This class collects data about a collision. More... | |
Enumerations | |
enum | HitResponse { ABORT_MOVE = 0, CONTINUE, FORCE_MOVE } |
Used as return value for the collision functions, to indicate how the collision should be handled. More... |
enum HitResponse |
Used as return value for the collision functions, to indicate how the collision should be handled.
Definition at line 26 of file collision_hit.hpp.
00027 { 00028 // Dynamic collision responses 00029 00031 ABORT_MOVE = 0, 00035 CONTINUE, 00038 FORCE_MOVE 00039 };