X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;ds=inline;f=src%2Fworld%2FEntityDerivative.hpp;fp=src%2Fworld%2FEntityDerivative.hpp;h=9666b1ff5488bbfafbc43fd7492c46cd65c2dcfe;hb=d38be21d103052761505d58a6d13e30a896dde01;hp=0000000000000000000000000000000000000000;hpb=07b8335e7bfd631e0878e183c87238812d632c56;p=blank.git diff --git a/src/world/EntityDerivative.hpp b/src/world/EntityDerivative.hpp new file mode 100644 index 0000000..9666b1f --- /dev/null +++ b/src/world/EntityDerivative.hpp @@ -0,0 +1,19 @@ +#ifndef BLANK_WORLD_ENTITYDERIVATIVE_HPP_ +#define BLANK_WORLD_ENTITYDERIVATIVE_HPP_ + +#include + + +namespace blank { + +struct EntityDerivative { + + glm::vec3 position; + glm::vec3 velocity; + glm::vec3 orient; + +}; + +} + +#endif