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