#ifndef TEXTURE_H #define TEXTURE_H #include namespace vb01{ class Texture{ public: Texture(std::string); void select(); private: unsigned int texture; int width,height,numChannels; unsigned char *data; }; } #endif