// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
using System.Globalization;
namespace SixLabors.Fonts {
///
/// Represents a collection of
///
internal interface IFontMetricsCollection : IReadOnlyFontMetricsCollection
{
///
/// Adds the font metrics and culture to the .
///
/// The font metrics to add.
/// The culture of the font metrics to add.
/// The new .
public FontFamily AddMetrics(FontMetrics metrics, CultureInfo culture);
///
/// Adds the font metrics to the .
///
/// The font metrics to add.
public void AddMetrics(FontMetrics metrics);
}
}