6 lines
225 B
C++
6 lines
225 B
C++
#include "LightComponent.h"
|
|
|
|
LightComponent::LightComponent(const Color &color, const Vector3 &direction, double reflection, bool altered):
|
|
color(color), direction(direction), reflection(reflection), altered(altered)
|
|
{
|
|
}
|