impr: Restructure various components much better (#1520)

This commit is contained in:
Nik
2024-01-28 22:14:59 +01:00
committed by GitHub
parent 6709087760
commit 339541a56f
59 changed files with 1179 additions and 471 deletions

View File

@@ -0,0 +1,16 @@
#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();
}