]> git.localhorst.tv Git - tacos.git/blob - src/physics/ray.hpp
mouse cursor mockup
[tacos.git] / src / physics / ray.hpp
1 #ifndef TACOS_PHYSICS_RAY_HPP_
2 #define TACOS_PHYSICS_RAY_HPP_
3
4 #include <glm/glm.hpp>
5
6
7 namespace tacos {
8
9 struct Ray {
10
11         glm::vec3 origin;
12         glm::vec3 direction;
13
14 };
15
16 }
17
18 #endif