This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.

9 lines
206 B
C++
Raw Normal View History

2022-02-28 23:04:56 +01:00
#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);
}
}