TmpMenu/src/gui/components/sub_title.cpp
Yimura ddddbd4efd refactor!: globals (#717)
* refactor(globals): use macro's for to_json/from_json
* refactor(globals): switch from global pointer to global instance
2022-12-18 22:15:52 +00:00

9 lines
213 B
C++

#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);
}
}