10 lines
158 B
C++
10 lines
158 B
C++
|
#include "LightComponent.h"
|
||
|
|
||
|
LightComponent::LightComponent()
|
||
|
: color(1.0f, 1.0f, 1.0f),
|
||
|
intensity(1.0f) {
|
||
|
}
|
||
|
|
||
|
LightComponent::~LightComponent() {
|
||
|
}
|