blob: 8d022979a11fb4d733fef73bef5aef14272ac55e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef O3D_VERTEX_HPP
#define O3D_VERTEX_HPP
#include "math/vector.hpp"
#include "o3d/vertex_data.hpp"
namespace engine::o3d {
struct Vertex {
engine::math::Vector4 vertex;
engine::math::Vector3 normal;
engine::math::Vector2 uv;
engine::o3d::VertexData data;
};
}
#endif // O3D_VERTEX_HPP
|