Saxum/entity.cc
2014-10-31 10:36:23 +01:00

17 lines
244 B
C++

#include "entity.hh"
Entity::Entity(glm::vec3 position, glm::vec3 rotation) {
this->position = position;
this->rotation = rotation;
}
Entity::Entity(){
}
Entity::~Entity(){
}
glm::vec3 Entity::getPosition() {
return position;
}