From 5a1d67d1797a3db874e44500e13237d676843185 Mon Sep 17 00:00:00 2001 From: vimene Date: Sun, 26 Nov 2023 08:43:14 +0100 Subject: added namespaces, made every function in engine.cpp static and added warnings' flags --- src/o3d/vertex_data.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/o3d/vertex_data.h') diff --git a/src/o3d/vertex_data.h b/src/o3d/vertex_data.h index 0000dda..dda881b 100644 --- a/src/o3d/vertex_data.h +++ b/src/o3d/vertex_data.h @@ -1,6 +1,8 @@ #ifndef O3D_VERTEX_DATA_H #define O3D_VERTEX_DATA_H +namespace engine::o3d { + class VertexData { public: static VertexData lerp(VertexData& vd1, VertexData& vd2, float s); @@ -9,4 +11,6 @@ class VertexData { VertexData(); }; +} + #endif // O3D_VERTEX_DATA_H -- cgit v1.2.3