AStarPathfinder.AStarPathfinder C# (CSharp) Method

AStarPathfinder() public method

public AStarPathfinder ( ) : System.Collections.Generic
return System.Collections.Generic
    public AStarPathfinder()
    {
        _openList = new List<Node>();
        _closeList = new List<Node>();
        _neighbours = new List<Node>();
        FinalPath = new List<Node>();
    }