Table of Contents

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 T

The position whose neighbors to return.

neighbors ISet<T>

The set to populate with neighbors.

Extension Methods