#ifndef GL_TEXTURE_HPP #define GL_TEXTURE_HPP #include struct GlTexture { GLuint id; int width; int height; }; #endif