Universe.BotManager.AStar.AStar.AStar C# (CSharp) Method

AStar() public method

public AStar ( ) : System
return System
        public AStar()
        {
            FOpenList = new Heap();
            FClosedList = new Heap();
            FSuccessors = new ArrayList();
            FSolution = new ArrayList();
        }