#ifndef MESH_HH #define MESH_HH #include #include #include struct OpenGLMesh { GLuint vao, vbo; unsigned nverts; QMatrix4x4 mat; QOpenGLTexture *tex; OpenGLMesh(QVector verts, QOpenGLTexture *tex); }; #endif