X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fworld%2FCollision.h;fp=src%2Fworld%2FCollision.h;h=740afa4b229cf0d11388fe0615bffa797177a24b;hb=962405ec344818a7f6850d243feca7989ae5d41b;hp=0000000000000000000000000000000000000000;hpb=dbc08d84d9de1a77cba0dd97e4701f4ac99d056e;p=orbi.git diff --git a/src/world/Collision.h b/src/world/Collision.h new file mode 100644 index 0000000..740afa4 --- /dev/null +++ b/src/world/Collision.h @@ -0,0 +1,19 @@ +#ifndef ORBI_COLLISION_H_ +#define ORBI_COLLISION_H_ + +#include "../graphics/Vector.h" + + +namespace orbi { + +struct Collision { + + Vector pos; + Vector norm; + Vector depth; + +}; + +} + +#endif