#include "TextFormat.hpp" #include "RawFont.hpp" namespace gui { auto TextFormat::str() const -> std::string { std::string ret = font->getName(); ret += " color: "; ret += std::to_string(color.intensity); return ret; } } // namespace gui