List<Node> pathFind(Node start, Node goal)

Returns a list of points that make up a continuous path between the start and goal nodes in this.graph.

Every point on the returned path was a walkable Node of this.graph.

Source

List<Node> pathFind(Node start, Node goal);