AStartTest.AStar.GetWalkableNeighborsNotOnClosedList C# (CSharp) Méthode

GetWalkableNeighborsNotOnClosedList() private méthode

private GetWalkableNeighborsNotOnClosedList ( Node currentNode ) : List
currentNode Node
Résultat List
        private List<Tile> GetWalkableNeighborsNotOnClosedList(Node currentNode)
        {
            return TileMap.GetWalkableNeighbors(currentNode.tile, closedDict);
        }