Saxum/entity.cc

13 lines
186 B
C++
Raw Normal View History

#include "entity.hh"
Entity::Entity(glm::vec3 position, glm::vec3 rotation) {
2014-10-30 22:30:56 +00:00
this->position = position;
this->rotation = rotation;
}
Entity::Entity(){
}
Entity::~Entity(){
}