diff options
Diffstat (limited to '')
-rw-r--r-- | src/Game.cpp (renamed from src/GlobalState.cpp) | 2 | ||||
-rw-r--r-- | src/Game.hpp (renamed from src/GlobalState.hpp) | 0 | ||||
-rw-r--r-- | src/Render.cpp | 2 | ||||
-rw-r--r-- | src/RendererEntity.cpp | 2 | ||||
-rw-r--r-- | src/main.cpp | 2 |
5 files changed, 4 insertions, 4 deletions
diff --git a/src/GlobalState.cpp b/src/Game.cpp index afa1a56..46785b1 100644 --- a/src/GlobalState.cpp +++ b/src/Game.cpp @@ -1,4 +1,4 @@ -#include "GlobalState.hpp" +#include "Game.hpp" #include "NetworkClient.hpp" #include "GameState.hpp" diff --git a/src/GlobalState.hpp b/src/Game.hpp index bc7224f..bc7224f 100644 --- a/src/GlobalState.hpp +++ b/src/Game.hpp diff --git a/src/Render.cpp b/src/Render.cpp index f86e5ec..a20ce21 100644 --- a/src/Render.cpp +++ b/src/Render.cpp @@ -8,7 +8,7 @@ #include "AssetManager.hpp" #include "Event.hpp" #include "DebugInfo.hpp" -#include "GlobalState.hpp" +#include "Game.hpp" #include "World.hpp" #include "GameState.hpp" #include "RendererWorld.hpp" diff --git a/src/RendererEntity.cpp b/src/RendererEntity.cpp index 25403be..ed1e854 100644 --- a/src/RendererEntity.cpp +++ b/src/RendererEntity.cpp @@ -7,7 +7,7 @@ #include "GameState.hpp" #include "Renderer.hpp" #include "AssetManager.hpp" -#include "GlobalState.hpp" +#include "Game.hpp" const GLfloat vertices[] = { -0.5f, 0.5f, 0.5f, diff --git a/src/main.cpp b/src/main.cpp index cb2daa8..100b7bc 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1,6 +1,6 @@ #include "Event.hpp" #include "Utility.hpp" -#include "GlobalState.hpp" +#include "Game.hpp" #include <set> |