AStartTest.AStar.GetWalkableNeighborsNotOnClosedList C# (CSharp) Method

GetWalkableNeighborsNotOnClosedList() private method

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