]> git.localhorst.tv Git - blank.git/blob - src/world/EntityDerivative.hpp
get rid of angular velocity
[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