added a camera class

This commit is contained in:
Lukian 2025-02-04 08:12:53 +01:00
parent 39cf068e91
commit 0bdca85075
10 changed files with 492 additions and 261 deletions

View file

@ -0,0 +1,15 @@
#ifndef CUBE_H
#define CUBE_H
#include <string>
#include <glm/glm.hpp>
class Cube
{
public:
unsigned int VBO, EBO;
Cube()
};
#endif