#include #include #include #include namespace hex::fonts { void registerFonts(); bool buildFontAtlas(); } IMHEX_LIBRARY_SETUP("Fonts") { hex::log::debug("Using romfs: '{}'", romfs::name()); hex::ImHexApi::System::addStartupTask("Loading fonts", true, hex::fonts::buildFontAtlas); hex::fonts::registerFonts(); }