Delegate AStar<T>.CollectAdditionalNeighbors
- Namespace
- MLEM.Pathfinding
- Assembly
- MLEM.dll
A delegate that determines a set of additional neighbors
to be considered for a given position
.
public delegate void AStar<T>.CollectAdditionalNeighbors(T position, ISet<T> neighbors)
Parameters
position
TThe position whose neighbors to return.
neighbors
ISet<T>The set to populate with neighbors.