Universe.BotManager.AStar.AStar.AStar C# (CSharp) 메소드

AStar() 공개 메소드

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