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.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/o3d/vertex_data.cpp') diff --git a/src/o3d/vertex_data.cpp b/src/o3d/vertex_data.cpp index 8d6f77b..0957742 100644 --- a/src/o3d/vertex_data.cpp +++ b/src/o3d/vertex_data.cpp @@ -1,5 +1,7 @@ #include "o3d/vertex_data.h" +using namespace engine::o3d; + VertexData VertexData::lerp(VertexData& vd1, VertexData& vd2, float s) { return {}; } -- cgit v1.2.3