Files

13 lines
104 B
C++
Raw Permalink Normal View History

2017-08-16 21:45:00 +02:00
#include "vertex.h"
Vertex::Vertex(const glm::vec3 &pos) :
m_pos(pos)
{
}
Vertex::~Vertex()
{
}