added the readme

This commit is contained in:
2026-06-08 17:07:34 -04:00
commit 6655fd2886
1001 changed files with 253651 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#ifndef EBO_CLASS_H
#define EBO_CLASS_H
#include <glad/glad.h>
class EBO {
public:
GLuint ID;
EBO();
void GenerateID() {
glGenBuffers(1, &ID);
};
void BufferData(GLuint* indices, GLsizeiptr size);
void Bind();
void Unbind();
void Delete();
};
#endif