]> git.localhorst.tv Git - tacos.git/blobdiff - src/physics/ray.hpp
mouse cursor mockup
[tacos.git] / src / physics / ray.hpp
diff --git a/src/physics/ray.hpp b/src/physics/ray.hpp
new file mode 100644 (file)
index 0000000..355af50
--- /dev/null
@@ -0,0 +1,18 @@
+#ifndef TACOS_PHYSICS_RAY_HPP_
+#define TACOS_PHYSICS_RAY_HPP_
+
+#include <glm/glm.hpp>
+
+
+namespace tacos {
+
+struct Ray {
+
+       glm::vec3 origin;
+       glm::vec3 direction;
+
+};
+
+}
+
+#endif