old-hiro/reference/font.hpp
2016-05-15 12:45:15 +02:00

10 lines
247 B
C++

namespace phoenix {
struct pFont {
static string serif(unsigned size, string style);
static string sans(unsigned size, string style);
static string monospace(unsigned size, string style);
static Size size(string font, string text);
};
}