]> git.localhorst.tv Git - blank.git/blob - src/world/EntityDerivative.hpp
d3a6f3056739cdd270c36073c9cf002af6a3c1f8
[blank.git] / src / world / EntityDerivative.hpp
1 #ifndef BLANK_WORLD_ENTITYDERIVATIVE_HPP_
2 #define BLANK_WORLD_ENTITYDERIVATIVE_HPP_
3
4 #include <glm/glm.hpp>
5
6
7 namespace blank {
8
9 struct EntityDerivative {
10
11         glm::vec3 position;
12         glm::vec3 velocity;
13
14 };
15
16 }
17
18 #endif