14 lines
233 B
C++
14 lines
233 B
C++
#include "vertex.h"
|
|
|
|
Vertex::Vertex(int x, int y, int z, int r, int colour, int score)
|
|
{
|
|
this->x = x;
|
|
this->y = y;
|
|
this->z = z;
|
|
this->r = r;
|
|
this->colour = colour;
|
|
this->score = score;
|
|
}
|
|
|
|
Vertex::~Vertex() {}
|