mirror of https://github.com/bsnes-emu/bsnes.git
20 lines
306 B
C++
Executable File
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};
|
|
}
|
|
|
|
}
|