Saxum/entity.cc
2014-10-30 23:30:56 +01:00

13 lines
186 B
C++

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