mirror of
https://github.com/Mr-X-GTA/YimMenu.git
synced 2025-06-18 07:07:32 +08:00

* refactor(globals): use macro's for to_json/from_json * refactor(globals): switch from global pointer to global instance
9 lines
213 B
C++
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);
|
|
}
|
|
} |