#include #include #include namespace hex::plugin::builtin { void extractBundledFiles() { for (const auto &romfsPath : romfs::list("auto_extract")) { for (const auto &imhexPath : fs::getDataPaths()) { wolv::io::File file(imhexPath, wolv::io::File::Mode::Create); if (!file.isValid()) continue; auto data = romfs::get(romfsPath).span(); file.writeBuffer(data.data(), data.size()); if (file.getSize() == data.size()) break; } } } }