mirror of https://github.com/bsnes-emu/bsnes.git
16 lines
420 B
C++
16 lines
420 B
C++
auto Font::serif(unsigned size, const string& style) -> string {
|
|
return pFont::serif(size, style);
|
|
}
|
|
|
|
auto Font::sans(unsigned size, const string& style) -> string {
|
|
return pFont::sans(size, style);
|
|
}
|
|
|
|
auto Font::monospace(unsigned size, const string& style) -> string {
|
|
return pFont::monospace(size, style);
|
|
}
|
|
|
|
auto Font::size(const string& font, const string& text) -> Size {
|
|
return pFont::size(font, text);
|
|
}
|