Forgot to test compilation, made it happen...

This commit is contained in:
2011-06-24 10:19:41 -04:00
parent 3a3132e44a
commit 5205b9dfab
3 changed files with 5 additions and 3 deletions

View File

@ -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;
}