Skybox
[opengl.git] / program.hpp
diff --git a/program.hpp b/program.hpp
new file mode 100644 (file)
index 0000000..0436338
--- /dev/null
@@ -0,0 +1,10 @@
+#ifndef PROGRAM_HPP
+#define PROGRAM_HPP
+#include <string>
+#include <GL/glew.h>
+class Program {
+       public:
+               Program(const std::string vert, const std::string frag);
+               GLuint progId;
+};
+#endif