X-Git-Url: http://git.localhorst.tv/?a=blobdiff_plain;f=src%2Fapp.hpp;h=8bafb2368d4f685c7b60f629e5bcd39e6b883fca;hb=ea1ce7b0fb7709ae56977480821ac96a231a0686;hp=5148a7a411a30669425b376ee9b73394802510c8;hpb=0a13b3fe342db83eef2c0ddc991a44452df77aa3;p=blank.git diff --git a/src/app.hpp b/src/app.hpp index 5148a7a..8bafb23 100644 --- a/src/app.hpp +++ b/src/app.hpp @@ -6,6 +6,7 @@ #include "camera.hpp" #include "init.hpp" +#include "model.hpp" #include "shader.hpp" @@ -28,13 +29,18 @@ 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; GLuint mvp_handle;