Files
HydraV3/HydraEngine/source/actor/HydraDirectionalLightActor.h
T
2026-07-17 15:30:29 +01:00

19 lines
337 B
C++

#ifndef HYDRALIGHTACTOR
#define HYDRALIGHTACTOR
#include "HydraActor.h"
class CLASS_DEFINE HydraDirectionalLightActor : public HydraActor
{
private:
protected:
public:
virtual void InitialiseComponents() override;
virtual void Destroy() override;
};
#endif /* HYDRALIGHTACTOR */