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

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

namespace engine::o3d {

class Vertex {
    public:
        engine::math::Vector4 vertex;
        engine::math::Vector3 normal;
        VertexData data;

        Vertex(engine::math::Vector4 vertex, engine::math::Vector3 normal, VertexData data);
};

}

#endif // O3D_VERTEX_H