We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The pathfinder class takes a Map object and finds the shortest valid path from the start point to the end point specified in the map object.
It functions by making a two dimensional array of SearchNodes and performing the A* algorithm on them.