2022-02-28 23:04:56 +01:00

9 lines
206 B
C++

#include "gui/components/components.hpp"
#include "fonts/fonts.hpp"
namespace big
{
void components::title(const std::string_view text) {
components::custom_text(text.data(), g->window.font_title);
}
}