2026-07-17 15:30:29 +01:00
|
|
|
#ifndef HYDRAECSLIGHTCOMPONENT
|
|
|
|
|
#define HYDRAECSLIGHTCOMPONENT
|
|
|
|
|
#include "../../engine/HydraEngine.h"
|
|
|
|
|
|
|
|
|
|
struct HydraLightComponent
|
|
|
|
|
{
|
|
|
|
|
glm::vec4 light_colour;
|
|
|
|
|
float light_intensity;
|
|
|
|
|
HydraID entity_id;
|
|
|
|
|
uint32_t light_type;
|
|
|
|
|
float padding[1];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif /* HYDRAECSLIGHTCOMPONENT */
|