#include #include #include #include #include "content/views/view_diff.hpp" namespace hex::plugin::diffing { void registerDiffingAlgorithms(); } using namespace hex; using namespace hex::plugin::diffing; IMHEX_PLUGIN_SETUP("Diffing", "WerWolv", "Support for diffing data") { hex::log::debug("Using romfs: '{}'", romfs::name()); hex::LocalizationManager::addLanguages(romfs::get("lang/languages.json").string(), [](const std::filesystem::path &path) { return romfs::get(path).string(); }); registerDiffingAlgorithms(); ContentRegistry::Views::add(); }