Moar files

This commit is contained in:
2014-03-14 00:05:38 +01:00
parent 3b4074cc17
commit b206ca0e4f
+3 -3
View File
@@ -39,13 +39,13 @@ public:
void ViewMatrix(glm::mat4 val) { m_ViewMatrix = val; }
float FOV() const { return m_FOV; }
void FOV(float val) { m_FOV = val; }
void FOV(float val);
float NearClip() const { return m_NearClip; }
void NearClip(float val) { m_NearClip = val; }
void NearClip(float val);
float FarClip() const { return m_FarClip; }
void FarClip(float val) { m_FarClip = val; }
void FarClip(float val);
private:
void UpdateProjectionMatrix();