diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-10 23:55:54 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-10 23:55:54 -0400 |
commit | 2b095e30f7786526da9339ccada3aae7f2ab5df4 (patch) | |
tree | 2f1b89406e387308f7d59818963a14e0ed8c6858 /src/render.hpp | |
parent | 2349bd2ffdd7b312c4b13e5794f12d2b7613f3b4 (diff) |
Started world system
Diffstat (limited to 'src/render.hpp')
-rw-r--r-- | src/render.hpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/render.hpp b/src/render.hpp index 0e4275e..8dcb434 100644 --- a/src/render.hpp +++ b/src/render.hpp @@ -22,11 +22,11 @@ #ifndef SYSTEM_RENDER_HPP_ #define SYSTEM_RENDER_HPP_ -#include "shader.hpp" - #include <entityx/entityx.h> +#include <GL/glew.h> #include <SDL2/SDL.h> +#include <SDL2/SDL_opengl.h> #define GLM_FORCE_RADIANS #include <glm/glm.hpp> @@ -34,6 +34,8 @@ #include <glm/gtc/type_ptr.hpp> #include <glm/gtc/noise.hpp> +#include "shader.hpp" + class RenderSystem : public entityx::System<RenderSystem> { private: |