Merge remote-tracking branch 'origin/master' into particles

Conflicts:
	src/Components/Physics.h
	src/GameWorld.cpp
	src/World.cpp
	src/World.h
	vs11/Returngeance/Returngeance.vcxproj.filters
This commit is contained in:
Stiffly
2014-05-12 13:55:48 +02:00
60 changed files with 2404 additions and 340 deletions
+4 -3
View File
@@ -20,7 +20,9 @@ public:
glm::mat4 viewMatrix;
glm::mat4 projectionMatrix;
int HEIGHT, WIDTH;
int Width() const { return m_Width; }
int Height() const { return m_Height; }
std::list<std::tuple<Model*, glm::mat4, bool, bool>> ModelsToRender;
std::list<std::tuple<Texture*, glm::mat4, glm::mat4>> TexturesToRender;
@@ -67,9 +69,8 @@ public:
void DrawBounds(bool val) { m_DrawBounds = val; }
void DrawSkybox();
private:
int m_Width, m_Height;
GLFWwindow* m_Window;
GLint m_glVersion[2];
GLchar* m_glVendor;