aboutsummaryrefslogtreecommitdiff
path: root/include/Vertex2D.hpp
blob: de22cd9f835aa3246ab95aed74645d168f95ceb3 (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:
        Vertex2D(f32 _x = 0.0f, f32 _y = 0.0f) : x(_x), y(_y)
        {
            
        }
        
        f32 x;
        f32 y;
    };
}