Returns a list of points that make up a continuous path between the start and goal nodes in this.graph.
start
goal
this.graph
Every point on the returned path was a walkable Node of this.graph.
List<Node> pathFind(Node start, Node goal);