TmpMenu/src/gui/components/sub_title.cpp

10 lines
214 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::sub_title(const std::string_view text)
{
components::custom_text(text.data(), g.window.font_sub_title);
2022-02-28 23:04:56 +01:00
}
}