feat: rework few fonctions and change glew to glad

- game files deleted
This commit is contained in:
2025-12-06 14:53:19 +01:00
parent 71ad3a034c
commit d2942242b4
21 changed files with 355 additions and 422 deletions

View File

@@ -1,20 +1,21 @@
#ifndef VBO_HPP
#define VBO_HPP
#include <gl/glew.h>
#include <stddef.h>
#include "glad/glad.h"
class VBO
{
private:
unsigned int id;
private:
unsigned int id;
public:
VBO(GLfloat* vertices, size_t size);
~VBO();
void bind();
void unbind();
public:
VBO(GLfloat* vertices, size_t size);
~VBO();
void bind();
void unbind();
};
#endif