aboutsummaryrefslogtreecommitdiff
path: root/src/o3d/vertex.hpp
blob: 70fca7b1e1bae8cc8fd3249995d2352d0b2c9353 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef O3D_VERTEX_H
#define O3D_VERTEX_H

#include "math/vector.hpp"
#include "o3d/vertex_data.hpp"

namespace engine::o3d {

using engine::math::Vector3, engine::math::Vector4;

struct Vertex {
    Vector4 vertex;
    Vector3 normal;
    VertexData data;
};

}

#endif // O3D_VERTEX_H