17 lines
134 B
C++
17 lines
134 B
C++
#ifndef MESH_H
|
|
#define MESH_H
|
|
|
|
class Mesh {
|
|
private:
|
|
unsigned int VBO, VAO;
|
|
|
|
public:
|
|
Mesh();
|
|
~Mesh();
|
|
|
|
void draw();
|
|
|
|
};
|
|
|
|
#endif
|