From a6e0c9ce9b6c468d0e622ffb5c05eba664ea4f47 Mon Sep 17 00:00:00 2001 From: LaG1924 <12997935+LaG1924@users.noreply.github.com> Date: Tue, 17 Oct 2017 23:33:13 +0500 Subject: Refactored #include directives --- src/Render.cpp | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'src/Render.cpp') diff --git a/src/Render.cpp b/src/Render.cpp index befc982..1e7f45c 100644 --- a/src/Render.cpp +++ b/src/Render.cpp @@ -1,14 +1,17 @@ #include "Render.hpp" -#include "Utility.hpp" +#include +#include + +#include "imgui_impl_sdl_gl3.h" #include "Shader.hpp" #include "AssetManager.hpp" #include "Event.hpp" #include "DebugInfo.hpp" #include "GlobalState.hpp" - -#include -#include "imgui_impl_sdl_gl3.h" +#include "World.hpp" +#include "GameState.hpp" +#include "RendererWorld.hpp" Render::Render(unsigned int windowWidth, unsigned int windowHeight, std::string windowTitle) : timer(std::chrono::milliseconds(16)) { InitSfml(windowWidth, windowHeight, windowTitle); -- cgit v1.2.3