bsnes/higan/phoenix/reference/font.cpp

20 lines
306 B
C++
Executable File

namespace phoenix {
string pFont::serif(unsigned size, string style) {
return "";
}
string pFont::sans(unsigned size, string style) {
return "";
}
string pFont::monospace(unsigned size, string style) {
return "";
}
Size pFont::size(const string &font, const string &text) {
return {0, 0};
}
}