#ifndef TEXTURE_H #define TEXTURE_H #include class Texture { public: Texture(GLenum type, const char *path); ~Texture(); void bind(GLenum texture); private: unsigned int ID; GLenum type; }; #endif