Files
Seele/src/Engine/Actor/PointLightActor.h
T
2024-06-09 12:20:53 +02:00

18 lines
468 B
C++

#pragma once
#include "Actor.h"
#include "Component/PointLight.h"
namespace Seele {
class PointLightActor : public Actor {
public:
PointLightActor(PScene scene);
PointLightActor(PScene scene, Vector position, Vector color, float attenuation);
virtual ~PointLightActor();
Component::PointLight& getPointLightComponent();
const Component::PointLight& getPointLightComponent() const;
private:
};
DEFINE_REF(PointLightActor)
} // namespace Seele