Initial commit: Final state of the master project
This commit is contained in:
15
Research/scene/PointLight.h
Normal file
15
Research/scene/PointLight.h
Normal file
@@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
#include "../inc/glm/glm.hpp"
|
||||
|
||||
class PointLight {
|
||||
public:
|
||||
PointLight();
|
||||
~PointLight();
|
||||
const glm::vec3& GetPosition() const;
|
||||
void SetPosition(const glm::vec3& pos);
|
||||
void SetPosition(double seed);
|
||||
protected:
|
||||
|
||||
private:
|
||||
glm::vec3 mPosition;
|
||||
};
|
||||
Reference in New Issue
Block a user