An API based on the custom pathfinding code I keep having to write over and over. I thought it would be nice to have my base pathfinding code in one place, where other people can also benefit from it.
Pathfinding is essentially solving a maze, finding a path between two points while avoiding obstacles. When pathfinding in games, we need to: Represent the game world in a way that defines what areas ...