summaryrefslogtreecommitdiff
path: root/gfx/models/vertex.hpp
blob: 3d7f93335a2b416b19156db26cd101395ed5102d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef VERTEX_H
#define VERTEX_H

#include <glm/glm.hpp>

class Vertex {
public:
	Vertex(glm::vec3 pos, glm::vec2 texCoord, glm::vec3 normal) :
		pos {std::move(pos)}, texCoord {std::move(texCoord)}, normal {std::move(normal)}
	{
	}

	glm::vec3 pos;
	glm::vec2 texCoord;
	glm::vec3 normal;
};

#endif