Interface required for objects to be used with the AStar path finding class. More...
Public Member Functions | |
IEnumerable< IAStarNode > | GetConnectedNodes () |
Gets all nodes that are connected to this node. More... | |
float | CalculateMoveCost (IAStarNode node) |
Calculates the estimated move cost to another node. More... | |
Interface required for objects to be used with the AStar path finding class.
float IAStarNode.CalculateMoveCost | ( | IAStarNode | node | ) |
Calculates the estimated move cost to another node.
node | Node. |
IEnumerable<IAStarNode> IAStarNode.GetConnectedNodes | ( | ) |
Gets all nodes that are connected to this node.