using EasyTalk.Localization; namespace EasyTalk.Display { /// /// This interface defines methods for components which contain localizable Text components. /// public interface LocalizableComponent { /// /// Gets or sets whether the component should override the default font sizes. /// public bool OverrideFontSizes { get; set; } /// /// Gets or sets the minimum font size to use on the component. /// public int MinFontSize { get; set; } /// /// Gets or sets the maximum font size to use on the component. /// public int MaxFontSize { get; set; } /// /// Gets or sets the LanguageFontOverrides to use on the component. /// public LanguageFontOverrides LanguageFontOverrides { get; set; } } }