Table of Contents

Interface IPathFinder

Namespace
LibGameAI.PathFinding
Assembly
PathFinding.dll
public interface IPathFinder

Properties

ClosedNodes

IEnumerable<int> ClosedNodes { get; }

Property Value

IEnumerable<int>

OpenNodes

IEnumerable<int> OpenNodes { get; }

Property Value

IEnumerable<int>

Methods

FindPath(IGraph, int, int)

IEnumerable<IConnection> FindPath(IGraph graph, int start, int goal)

Parameters

graph IGraph
start int
goal int

Returns

IEnumerable<IConnection>