18 lines
378 B
C++
18 lines
378 B
C++
#pragma once
|
|
#include "Actor.h"
|
|
#include "Component/PointLight.h"
|
|
|
|
namespace Seele
|
|
{
|
|
class PointLightActor : public Actor
|
|
{
|
|
public:
|
|
PointLightActor(PScene scene);
|
|
virtual ~PointLightActor();
|
|
Component::PointLight& getPointLightComponent();
|
|
const Component::PointLight& getPointLightComponent() const;
|
|
private:
|
|
};
|
|
DEFINE_REF(PointLightActor)
|
|
} // namespace Seele
|