paysages3d/src/render/software/LightComponent.cpp

6 lines
226 B
C++
Raw Normal View History

2013-12-08 16:56:59 +00:00
#include "LightComponent.h"
LightComponent::LightComponent(const Color &color, const Vector3 &direction, double reflection, bool altered)
: color(color), direction(direction), reflection(reflection), altered(altered) {
}