diff --git a/entity.hh b/entity.hh new file mode 100644 index 0000000..88f393b --- /dev/null +++ b/entity.hh @@ -0,0 +1,19 @@ +#ifndef ENTITIY_HH_INCLUDED +#define ENTITY_HH_INCLUDED + +#include + +#endif + +class Entity { + public: + Entity(glm::vec3 position, glm::vec3 rotation); + ~Entity(); + void setPosition(glm::vec3 positon); + void setRotation(glm::vec3 rotation); + glm::vec3 getPosition(); + glm::vec3 getRotation(); + private: + glm::vec3 position; + glm::vec3 rotation; +};