9 lines
211 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::small_text(const std::string_view text) {
components::custom_text(text.data(), g->window.font_small);
}
}