1
0
mirror of synced 2024-12-12 16:01:06 +01:00
ImHex/plugins/fonts/source/library_fonts.cpp

16 lines
297 B
C++

#include <hex/plugin.hpp>
#include <hex/api/content_registry.hpp>
#include <hex/helpers/logger.hpp>
#include <romfs/romfs.hpp>
namespace hex::fonts {
void loadFonts();
}
IMHEX_LIBRARY_SETUP("Fonts") {
hex::log::debug("Using romfs: '{}'", romfs::name());
hex::fonts::loadFonts();
}