#ifndef Texture_h__ #define Texture_h__ #include #include "OpenGL.h" #include class Texture { public: Texture(std::string path); ~Texture(); GLuint texture; void Load(std::string path); void Bind(); }; #endif // Texture_h__