Universe.BotManager.AStar.AStar.AStar C# (CSharp) Méthode

AStar() public méthode

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