[EDIT] code style guide finished
This commit is contained in:
@@ -8,7 +8,7 @@ namespace entities
|
||||
class Camera
|
||||
{
|
||||
private:
|
||||
float speed = 0.02f;
|
||||
const float SPEED = 0.02f;
|
||||
|
||||
glm::vec3 position;
|
||||
glm::vec3 rotation;
|
||||
@@ -16,9 +16,9 @@ namespace entities
|
||||
public:
|
||||
Camera(const ::glm::vec3& position, const ::glm::vec3& rotation);
|
||||
|
||||
void move(GLFWwindow* window);
|
||||
void Move(GLFWwindow* window);
|
||||
|
||||
inline glm::vec3 getPosition() const{ return position; }
|
||||
inline glm::vec3 getRotation() const{ return rotation; }
|
||||
inline glm::vec3 GetPosition() const{ return position; }
|
||||
inline glm::vec3 GetRotation() const{ return rotation; }
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user