ThreeLab/Engine/Components/LightComponent.h
2025-04-01 15:03:18 -05:00

17 lines
253 B
C++

#ifndef LIGHT_COMPONENT_H
#define LIGHT_COMPONENT_H
#include <glm/glm.hpp>
class LightComponent {
public:
LightComponent();
~LightComponent();
// Light properties.
glm::vec3 color;
float intensity;
};
#endif // LIGHT_COMPONENT_H