Forgot to test compilation, made it happen...
This commit is contained in:
@ -113,10 +113,11 @@ bool Graph::add_vertex(int x, int y, int r, int colour, int score, Vertex* src)
|
||||
}
|
||||
|
||||
|
||||
Vertex::Vertex(int x, int y, int r, int colour)
|
||||
Vertex::Vertex(int x, int y, int r, int colour, int score)
|
||||
{
|
||||
this->x = x;
|
||||
this->y = y;
|
||||
this->r = r;
|
||||
this->colour = colour;
|
||||
this->score = score;
|
||||
}
|
||||
|
Reference in New Issue
Block a user