chore: lower case all files

This commit is contained in:
2025-12-06 15:03:14 +01:00
parent d2942242b4
commit 3bd4df0253
6 changed files with 0 additions and 0 deletions

21
inc/vbo.hpp Executable file
View File

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