diff options
Diffstat (limited to 'src/o3d/vertex.hpp')
| -rw-r--r-- | src/o3d/vertex.hpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/o3d/vertex.hpp b/src/o3d/vertex.hpp index 1605f0d..8d02297 100644 --- a/src/o3d/vertex.hpp +++ b/src/o3d/vertex.hpp @@ -6,12 +6,11 @@ namespace engine::o3d { -using engine::math::Vector3, engine::math::Vector4; - struct Vertex { - Vector4 vertex; - Vector3 normal; - VertexData data; + engine::math::Vector4 vertex; + engine::math::Vector3 normal; + engine::math::Vector2 uv; + engine::o3d::VertexData data; }; } |
