added shader

This commit is contained in:
Lauchmelder 2021-12-20 19:09:52 +01:00
parent 8f1ea5c7ff
commit 9daa5b5c2c
7 changed files with 173 additions and 8 deletions

View file

@ -1,6 +1,8 @@
#pragma once
#include <string>
#include "Shader.hpp"
#include "VertexArrayObject.hpp"
struct GLFWwindow;
@ -32,4 +34,7 @@ public:
private:
GLFWwindow* window = nullptr;
Shader shader = nullptr;
VertexArrayObject model = nullptr;
};