diff options
Diffstat (limited to 'src/o3d/vertex_data.h')
-rw-r--r-- | src/o3d/vertex_data.h | 4 |
1 files changed, 4 insertions, 0 deletions
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 |