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>();
    }