X-Git-Url: http://git.lukelau.me/?p=opengl.git;a=blobdiff_plain;f=program.hpp;fp=program.hpp;h=0436338502028f97c68025fd56f4cf42bd46658a;hp=0000000000000000000000000000000000000000;hb=c44e69ec78367fb2957324026894aef970f2481a;hpb=85f8f7278f24fe73fef1a19174376b155319072f diff --git a/program.hpp b/program.hpp new file mode 100644 index 0000000..0436338 --- /dev/null +++ b/program.hpp @@ -0,0 +1,10 @@ +#ifndef PROGRAM_HPP +#define PROGRAM_HPP +#include +#include +class Program { + public: + Program(const std::string vert, const std::string frag); + GLuint progId; +}; +#endif