AStarPathfinder.AStarPathfinder C# (CSharp) Метод

AStarPathfinder() публичный Метод

public AStarPathfinder ( ) : System.Collections.Generic
Результат System.Collections.Generic
    public AStarPathfinder()
    {
        _openList = new List<Node>();
        _closeList = new List<Node>();
        _neighbours = new List<Node>();
        FinalPath = new List<Node>();
    }