0436338502028f97c68025fd56f4cf42bd46658a
[opengl.git] / program.hpp
1 #ifndef PROGRAM_HPP
2 #define PROGRAM_HPP
3 #include <string>
4 #include <GL/glew.h>
5 class Program {
6         public:
7                 Program(const std::string vert, const std::string frag);
8                 GLuint progId;
9 };
10 #endif