13 lines
104 B
C++
13 lines
104 B
C++
#include "vertex.h"
|
|
|
|
Vertex::Vertex(const glm::vec3 &pos) :
|
|
m_pos(pos)
|
|
{
|
|
|
|
}
|
|
|
|
Vertex::~Vertex()
|
|
{
|
|
|
|
}
|