TmpMenu/src/gui/components/sub_title.cpp

9 lines
213 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::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
}
}