]> git.localhorst.tv Git - blank.git/blobdiff - src/app.hpp
begun extracting model class
[blank.git] / src / app.hpp
index 5148a7a411a30669425b376ee9b73394802510c8..4e381a2a2fa6d7e388ab3884ad7dc33f0227eaf5 100644 (file)
@@ -6,6 +6,7 @@
 
 #include "camera.hpp"
 #include "init.hpp"
+#include "model.hpp"
 #include "shader.hpp"
 
 
@@ -28,6 +29,7 @@ public:
 
 private:
        InitSDL init_sdl;
+       InitIMG init_img;
        InitGL init_gl;
        Window window;
        GLContext ctx;
@@ -35,6 +37,7 @@ private:
        Program program;
 
        Camera cam;
+       Model model;
 
        GLuint vtx_buf;
        GLuint mvp_handle;