Saxum/light.cc
2014-10-30 23:32:21 +01:00

11 lines
227 B
C++

#include "light.hh"
Light::Light(glm::vec3 position, glm::vec3 rotation, glm::vec3 colour, float intensity)
: Entity(position, rotation) {
this->colour = colour;
this->intensity = intensity;
}
Light::~Light() {
}