X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fapp.hpp;h=4e381a2a2fa6d7e388ab3884ad7dc33f0227eaf5;hb=d18be10ef3f0a7b61c6f5c4c4096ca2b776c75b3;hp=9ec5f1f9b7de81c710aa74c9ce60247a995f86ca;hpb=b314df303ffedbd6d2e81872908d12fc9712801a;p=blank.git diff --git a/src/app.hpp b/src/app.hpp index 9ec5f1f..4e381a2 100644 --- a/src/app.hpp +++ b/src/app.hpp @@ -4,7 +4,9 @@ #include #include +#include "camera.hpp" #include "init.hpp" +#include "model.hpp" #include "shader.hpp" @@ -27,14 +29,17 @@ public: private: InitSDL init_sdl; + InitIMG init_img; InitGL init_gl; Window window; GLContext ctx; InitGLEW init_glew; Program program; + Camera cam; + Model model; + GLuint vtx_buf; - glm::mat4 mvp; GLuint mvp_handle; bool running;