15 lines
No EOL
147 B
C++
15 lines
No EOL
147 B
C++
#ifndef CUBE_H
|
|
#define CUBE_H
|
|
|
|
#include <string>
|
|
#include <glm/glm.hpp>
|
|
|
|
class Cube
|
|
{
|
|
public:
|
|
unsigned int VBO, EBO;
|
|
|
|
Cube()
|
|
};
|
|
|
|
#endif |