Saxum/entity.hh

20 lines
425 B
C++
Raw Normal View History

2014-10-20 16:43:46 +00:00
#ifndef ENTITIY_HH_INCLUDED
#define ENTITY_HH_INCLUDED
#include <ACGL/Math/Math.hh>
#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;
};