gitextract_mfzxi2fh/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ └── bug_report.md │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── src/ │ ├── CMakeLists.txt │ ├── config.cpp │ ├── config.hpp │ ├── file/ │ │ ├── CMakeLists.txt │ │ ├── file.cpp │ │ ├── file.hpp │ │ ├── sanitization.cpp │ │ └── sanitization.hpp │ ├── gamesdk/ │ │ ├── CMakeLists.txt │ │ ├── ILuaInterface.cpp │ │ ├── ILuaInterface.hpp │ │ ├── ILuaShared.cpp │ │ ├── ILuaShared.hpp │ │ ├── IVEngineClient.cpp │ │ ├── IVEngineClient.hpp │ │ └── NetChannel.hpp │ ├── hook/ │ │ ├── CMakeLists.txt │ │ ├── ihooker.hpp │ │ ├── luainterface.cpp │ │ ├── luainterface.hpp │ │ ├── luashared.cpp │ │ ├── luashared.hpp │ │ └── vtable.hpp │ ├── init.cpp │ ├── init.hpp │ ├── library/ │ │ ├── CMakeLists.txt │ │ ├── library.cpp │ │ └── library.hpp │ ├── logger.cpp │ ├── logger.hpp │ ├── lua/ │ │ ├── CMakeLists.txt │ │ ├── luadumper.cpp │ │ ├── luadumper.hpp │ │ ├── luaexports.cpp │ │ ├── luaexports.hpp │ │ ├── lualoader.cpp │ │ └── lualoader.hpp │ ├── main.cpp │ ├── os.hpp │ └── tests/ │ ├── CMakeLists.txt │ ├── file.cpp │ └── main.cpp └── toolchains/ ├── gcc-32bit.cmake ├── gcc-64bit.cmake ├── gcc-macos-fat.cmake ├── gcc-macos-i386.cmake ├── gcc-macos-x86_64.cmake └── msvc.cmake