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

This commit is contained in:
Tleety
2015-12-03 18:15:56 +01:00
19 changed files with 1087 additions and 4 deletions
+4
View File
@@ -1,4 +1,5 @@
#include "Game.h"
#include "HardcodedTestWorld.h"
Game::Game(int argc, char* argv[])
{
@@ -32,6 +33,9 @@ Game::Game(int argc, char* argv[])
m_FrameStack->Width = m_Renderer->Resolution().Width;
m_FrameStack->Height = m_Renderer->Resolution().Height;
// Create a TEST WORLD
m_World = new HardcodedTestWorld();
m_LastTime = glfwGetTime();
}