From ea5aed80d26bf3fe0379040fc6f8bce1904b9d25 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20GUEZO?= Date: Wed, 7 Jan 2026 13:49:16 +0100 Subject: [PATCH] feat(vbo): add core namespace --- inc/core/vbo.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/inc/core/vbo.hpp b/inc/core/vbo.hpp index 95398ca..f49229a 100755 --- a/inc/core/vbo.hpp +++ b/inc/core/vbo.hpp @@ -5,6 +5,8 @@ #include "glad/glad.h" +namespace core +{ // A VBO (Vertex Buffer Object) is a contiguous block of GPU memory that stores // vertex data as raw bytes. class VBO @@ -29,5 +31,6 @@ class VBO // unbinds current GL_ARRAY_BUFFER target (it's replaced by null id) static void unbind(); }; +} // namespace core #endif \ No newline at end of file