summaryrefslogtreecommitdiffstats
path: root/src/game/client/world/chunk_vbo.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/client/world/chunk_vbo.hh')
-rw-r--r--src/game/client/world/chunk_vbo.hh9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/game/client/world/chunk_vbo.hh b/src/game/client/world/chunk_vbo.hh
index da8270e..e9061d8 100644
--- a/src/game/client/world/chunk_vbo.hh
+++ b/src/game/client/world/chunk_vbo.hh
@@ -1,3 +1,10 @@
+// SPDX-License-Identifier: BSD-2-Clause
+// Copyright (c) 2025 Kirill Dmitrievich
+// File: chunk_vbo.hh
+// Description: Utility wrapper for OpenGL VBOs
+
+#ifndef CLIENT_WORLD_CHUNK_VBO_HH
+#define CLIENT_WORLD_CHUNK_VBO_HH
#pragma once
class ChunkVBO final {
@@ -17,3 +24,5 @@ public:
}
}
};
+
+#endif