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.

10 lines
206 B
C++
Raw Normal View History

2022-02-28 23:04:56 +01:00
#include "fonts/fonts.hpp"
#include "gui/components/components.hpp"
2022-02-28 23:04:56 +01:00
namespace big
{
void components::title(const std::string_view text)
{
components::custom_text(text.data(), g.window.font_title);
2022-02-28 23:04:56 +01:00
}
}