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) {
|
2022-12-18 23:15:52 +01:00
|
|
|
components::custom_text(text.data(), g.window.font_title);
|
2022-02-28 23:04:56 +01:00
|
|
|
}
|
|
|
|
}
|