game-engine/include/myEngine/shapes/cube.hpp
2025-02-04 08:12:53 +01:00

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