├── .gitignore ├── .gitmodules ├── README.md ├── pak-bypass.sln └── pak-bypass ├── pak-bypass.vcxproj ├── pak-bypass.vcxproj.filters ├── pak-bypass.vcxproj.user └── src ├── PatternScan.h ├── dllmain.cpp ├── hook ├── pak-hook.cpp └── pak-hook.h └── logger.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellokittyfan48/ww-pak-bypass/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellokittyfan48/ww-pak-bypass/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellokittyfan48/ww-pak-bypass/HEAD/README.md -------------------------------------------------------------------------------- /pak-bypass.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellokittyfan48/ww-pak-bypass/HEAD/pak-bypass.sln -------------------------------------------------------------------------------- /pak-bypass/pak-bypass.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellokittyfan48/ww-pak-bypass/HEAD/pak-bypass/pak-bypass.vcxproj -------------------------------------------------------------------------------- /pak-bypass/pak-bypass.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellokittyfan48/ww-pak-bypass/HEAD/pak-bypass/pak-bypass.vcxproj.filters -------------------------------------------------------------------------------- /pak-bypass/pak-bypass.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellokittyfan48/ww-pak-bypass/HEAD/pak-bypass/pak-bypass.vcxproj.user -------------------------------------------------------------------------------- /pak-bypass/src/PatternScan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellokittyfan48/ww-pak-bypass/HEAD/pak-bypass/src/PatternScan.h -------------------------------------------------------------------------------- /pak-bypass/src/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellokittyfan48/ww-pak-bypass/HEAD/pak-bypass/src/dllmain.cpp -------------------------------------------------------------------------------- /pak-bypass/src/hook/pak-hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellokittyfan48/ww-pak-bypass/HEAD/pak-bypass/src/hook/pak-hook.cpp -------------------------------------------------------------------------------- /pak-bypass/src/hook/pak-hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellokittyfan48/ww-pak-bypass/HEAD/pak-bypass/src/hook/pak-hook.h -------------------------------------------------------------------------------- /pak-bypass/src/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hellokittyfan48/ww-pak-bypass/HEAD/pak-bypass/src/logger.h --------------------------------------------------------------------------------