diff options
author | Joursoir <chat@joursoir.net> | 2021-04-11 13:08:23 +0000 |
---|---|---|
committer | Joursoir <chat@joursoir.net> | 2021-04-11 13:08:23 +0000 |
commit | 9b3892b7f430e6694e944e2e3f162f3903ae8d89 (patch) | |
tree | 61d2fa7fe32681741080da2994fc9e070a1fb957 | |
parent | e7ba13097919d96ef1a2d1da9344e2ed4595b9cc (diff) | |
download | space-simulator-9b3892b7f430e6694e944e2e3f162f3903ae8d89.tar.gz space-simulator-9b3892b7f430e6694e944e2e3f162f3903ae8d89.tar.bz2 space-simulator-9b3892b7f430e6694e944e2e3f162f3903ae8d89.zip |
CelestialObject & objects: update #include
-rw-r--r-- | src/game/CelestialObject.cpp | 2 | ||||
-rw-r--r-- | src/game/objects.cpp | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/game/CelestialObject.cpp b/src/game/CelestialObject.cpp index 12153ae..cdef047 100644 --- a/src/game/CelestialObject.cpp +++ b/src/game/CelestialObject.cpp @@ -5,7 +5,7 @@ #include "CelestialObject.hpp" #include "../graphics/Texture.hpp" #include "../graphics/Mesh.hpp" -#include "../objects.hpp" +#include "objects.hpp" using namespace glm; diff --git a/src/game/objects.cpp b/src/game/objects.cpp index b7dbf66..a92a83b 100644 --- a/src/game/objects.cpp +++ b/src/game/objects.cpp @@ -1,9 +1,9 @@ #include <glm/glm.hpp> #include <glm/gtc/constants.hpp> +#include "../graphics/Mesh.hpp" +#include "../graphics/Vertex.hpp" #include "objects.hpp" -#include "graphics/Mesh.hpp" -#include "graphics/Vertex.hpp" using namespace glm; |