Files
FluckyGameOpenGL/vertex.cpp
Daniel Brunner d3779b8e64 Added Vertex
2017-08-16 21:45:00 +02:00

13 lines
104 B
C++

#include "vertex.h"
Vertex::Vertex(const glm::vec3 &pos) :
m_pos(pos)
{
}
Vertex::~Vertex()
{
}