Fixed pathfinding v1

This commit is contained in:
t-moe
2016-06-17 00:55:49 +02:00
parent 5ac72ae909
commit d221c222c4
2 changed files with 71 additions and 71 deletions

View File

@@ -19,7 +19,7 @@ public class Vertex {
public Vertex(int dist, Point pos) {
this.dist = dist;
this.pos = pos;
this.prev = new Vertex(0, new Point(0,0));
this.prev = null;
}
/**