Renamed GameObject to Mesh
This commit is contained in:
16
src/Mesh.h
Normal file
16
src/Mesh.h
Normal file
@@ -0,0 +1,16 @@
|
||||
#ifndef MESH_H
|
||||
#define MESH_H
|
||||
|
||||
class Mesh {
|
||||
private:
|
||||
unsigned int VBO, VAO;
|
||||
|
||||
public:
|
||||
Mesh();
|
||||
~Mesh();
|
||||
|
||||
void draw();
|
||||
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user