Hi!
I was wondering how to implement the pathfinding API of LibGdx when I have multiple entities that need a path at once.
I guess I only need to store the Heuristics and the Graph once and I can use those for all pathfinding, but my question is do I need a new instnace of IndexedAStarPathfinder and Path for each entity, or should I use only one instance of those aswell for all my eintities.
Thanks in advance for any answers!