AStartTest.AStar.GetWalkableNeighborsNotOnClosedList C# (CSharp) Метод

GetWalkableNeighborsNotOnClosedList() приватный Метод

private GetWalkableNeighborsNotOnClosedList ( Node currentNode ) : List
currentNode Node
Результат List
        private List<Tile> GetWalkableNeighborsNotOnClosedList(Node currentNode)
        {
            return TileMap.GetWalkableNeighbors(currentNode.tile, closedDict);
        }