feat!: rework header files

This commit is contained in:
2026-01-06 20:07:44 +01:00
parent f4f9f4a7ac
commit 66761b8e5d
12 changed files with 122 additions and 78 deletions

23
inc/core/vbo.hpp Executable file
View File

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