X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fapp.hpp;h=8bafb2368d4f685c7b60f629e5bcd39e6b883fca;hb=ea1ce7b0fb7709ae56977480821ac96a231a0686;hp=9ec5f1f9b7de81c710aa74c9ce60247a995f86ca;hpb=b314df303ffedbd6d2e81872908d12fc9712801a;p=blank.git diff --git a/src/app.hpp b/src/app.hpp index 9ec5f1f..8bafb23 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,20 @@ public: private: InitSDL init_sdl; + InitIMG init_img; InitGL init_gl; Window window; GLContext ctx; InitGLEW init_glew; Program program; + float pitch_sensitivity; + float yaw_sensitivity; + + Camera cam; + Model model; + GLuint vtx_buf; - glm::mat4 mvp; GLuint mvp_handle; bool running;