Final project!
[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                 void validate() const;
9                 GLuint progId;
10 };
11 #endif