Dashboard/Quik/Typography/QuikFont.cs

14 lines
429 B
C#
Raw Normal View History

2022-08-19 15:13:19 +02:00
namespace Quik.Typography
{
public abstract class QuikFont
{
public abstract QuikFontStyle Style { get; }
public string FontFamily => Style.Family;
public float FontSize => Style.Size;
public QuikFontStyle FontStyle => Style;
public abstract bool HasCharacter(int character);
public abstract void GetCharacter(int character, out int texture, out QuikGlyph glyph);
}
}