added a camera class
This commit is contained in:
parent
39cf068e91
commit
0bdca85075
10 changed files with 492 additions and 261 deletions
15
include/myEngine/shapes/cube.hpp
Normal file
15
include/myEngine/shapes/cube.hpp
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue