namespace Quik.Typography { public interface IQuikFontManager { /// /// The context owning the font manager. /// QuikContext Context { get; set; } /// /// Function called on clear. /// void Clear(); /// /// Get a font object for the given font. /// /// The font style to fetch. /// The font. QuikFont GetFont(QuikFontStyle fontStyle); } }