bsnes/hiro/core/font.cpp

20 lines
452 B
C++

#if defined(Hiro_Font)
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);
}
#endif