]> git.localhorst.tv Git - orbi.git/blobdiff - src/world/Collision.h
some cleanup
[orbi.git] / src / world / Collision.h
diff --git a/src/world/Collision.h b/src/world/Collision.h
new file mode 100644 (file)
index 0000000..740afa4
--- /dev/null
@@ -0,0 +1,19 @@
+#ifndef ORBI_COLLISION_H_
+#define ORBI_COLLISION_H_
+
+#include "../graphics/Vector.h"
+
+
+namespace orbi {
+
+struct Collision {
+
+       Vector<float> pos;
+       Vector<float> norm;
+       Vector<float> depth;
+
+};
+
+}
+
+#endif