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

#include "math/vector.hpp"

namespace engine::o3d {

struct Vertex {
    engine::math::Vector4 vertex;
    engine::math::Vector3 normal;
    engine::math::Vector2 uv;
};

}

#endif // O3D_VERTEX_HPP