├── .gitignore ├── CMakeLists.txt ├── ELF64 ├── fix.cpp └── fix.h ├── README.md ├── debug.bat ├── include ├── Log.h └── argparse.hpp ├── m.bat ├── main.cpp └── outputs └── arm64-v8a └── SoDumper /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | cmake-build-*/ -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enenH/SoDumper/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /ELF64/fix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enenH/SoDumper/HEAD/ELF64/fix.cpp -------------------------------------------------------------------------------- /ELF64/fix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enenH/SoDumper/HEAD/ELF64/fix.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ue4dumper dump libUE4速度太慢了 -------------------------------------------------------------------------------- /debug.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enenH/SoDumper/HEAD/debug.bat -------------------------------------------------------------------------------- /include/Log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enenH/SoDumper/HEAD/include/Log.h -------------------------------------------------------------------------------- /include/argparse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enenH/SoDumper/HEAD/include/argparse.hpp -------------------------------------------------------------------------------- /m.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enenH/SoDumper/HEAD/m.bat -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enenH/SoDumper/HEAD/main.cpp -------------------------------------------------------------------------------- /outputs/arm64-v8a/SoDumper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/enenH/SoDumper/HEAD/outputs/arm64-v8a/SoDumper --------------------------------------------------------------------------------