Created framework for a hardcoded world for TESTING PURPOSES

This commit is contained in:
sippeangelo
2015-12-03 16:45:03 +01:00
parent d3d2e594fe
commit 032b384f3f
3 changed files with 131 additions and 3 deletions
+3 -3
View File
@@ -3,12 +3,11 @@
#include "Core/ResourceManager.h"
#include "Core/ConfigFile.h"
#include "Core/EventBroker.h"
#include "Rendering/DummyRenderer.h"
#include "Core/InputManager.h"
#include "GUI/Frame.h"
#include "Core/World.h"
class Game
{
@@ -26,6 +25,7 @@ private:
IRenderer* m_Renderer;
InputManager* m_InputManager;
GUI::Frame* m_FrameStack;
World* m_World;
};
#endif
#endif