aboutsummaryrefslogtreecommitdiff
path: root/include/Vertex.hpp
blob: 3526d99da162943618dc5e88c0aa54a07ed7ce95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once

#include "types.hpp"

namespace amalgine {
    class Vertex2D {
    public:
        f32 x;
        f32 y;
    };

    class Vertex3D {
    public:
        f32 x;
        f32 y;
        f32 z;
    };
}