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