├── .gitignore ├── .vscode └── c_cpp_properties.json ├── Android.mk ├── Application.mk ├── CMakeLists.txt ├── LICENSE ├── README.md ├── clean.bat ├── clean.sh ├── include ├── AndroidLog │ └── Logger.hpp ├── AndroidProp │ └── AndroidProp.hpp ├── Dobby │ └── dobby.h ├── Il2cppResolver │ ├── BasicStructs │ │ ├── BasicStructs.h │ │ ├── Color.h │ │ ├── Quaternion.h │ │ ├── Ray.h │ │ ├── RaycastHit.h │ │ ├── Rect.h │ │ ├── Vector2.h │ │ └── Vector3.h │ ├── Il2cppApi │ │ ├── il2cppApiFunctions.h │ │ ├── il2cppClass.h │ │ └── il2cppTabledefs.h │ └── ResolverInit.hpp ├── ImGUI │ ├── backends │ │ ├── imgui_impl_android.h │ │ └── imgui_impl_opengl3.h │ ├── font │ │ └── Font.h │ ├── imconfig.h │ ├── imgui.h │ ├── imgui_internal.h │ ├── imstb_rectpack.h │ ├── imstb_textedit.h │ └── imstb_truetype.h ├── Json │ └── json.hpp ├── MapTools │ └── MapTools.hpp ├── MemoryTools │ └── MemoryTools.hpp ├── README.md └── curl │ ├── curl.h │ ├── curlver.h │ ├── easy.h │ ├── header.h │ ├── mprintf.h │ ├── multi.h │ ├── options.h │ ├── stdcheaders.h │ ├── system.h │ ├── typecheck-gcc.h │ └── urlapi.h ├── libSsageObfuscator.so ├── libs ├── README.md ├── curl │ └── android │ │ ├── arm64-v8a │ │ └── libcurl.a │ │ └── armeabi-v7a │ │ └── libcurl.a └── dobby │ └── android │ ├── arm64-v8a │ └── libdobby.a │ ├── armeabi-v7a │ └── libdobby.a │ ├── x86 │ └── libdobby.a │ └── x86_64 │ └── libdobby.a ├── logcat.bat ├── logcat.sh ├── outputs ├── README.md └── libs │ └── arm64-v8a │ └── libUnityCheat.so ├── push.bat ├── push.sh ├── res └── README.md ├── src ├── UnityCheat.cpp └── UnityCheat.hpp └── utils ├── AndroidProp ├── AndroidProp.cpp └── README.md ├── ImGUI ├── backends │ ├── imgui_impl_android.cpp │ └── imgui_impl_opengl3.cpp ├── imgui.cpp ├── imgui_draw.cpp ├── imgui_tables.cpp └── imgui_widgets.cpp ├── MapTools └── MapTools.cpp ├── MemoryTools ├── MemoryTools.cpp └── README.md └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/Android.mk -------------------------------------------------------------------------------- /Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/Application.mk -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/README.md -------------------------------------------------------------------------------- /clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/clean.bat -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/clean.sh -------------------------------------------------------------------------------- /include/AndroidLog/Logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/AndroidLog/Logger.hpp -------------------------------------------------------------------------------- /include/AndroidProp/AndroidProp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/AndroidProp/AndroidProp.hpp -------------------------------------------------------------------------------- /include/Dobby/dobby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/Dobby/dobby.h -------------------------------------------------------------------------------- /include/Il2cppResolver/BasicStructs/BasicStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/Il2cppResolver/BasicStructs/BasicStructs.h -------------------------------------------------------------------------------- /include/Il2cppResolver/BasicStructs/Color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/Il2cppResolver/BasicStructs/Color.h -------------------------------------------------------------------------------- /include/Il2cppResolver/BasicStructs/Quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/Il2cppResolver/BasicStructs/Quaternion.h -------------------------------------------------------------------------------- /include/Il2cppResolver/BasicStructs/Ray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/Il2cppResolver/BasicStructs/Ray.h -------------------------------------------------------------------------------- /include/Il2cppResolver/BasicStructs/RaycastHit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/Il2cppResolver/BasicStructs/RaycastHit.h -------------------------------------------------------------------------------- /include/Il2cppResolver/BasicStructs/Rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/Il2cppResolver/BasicStructs/Rect.h -------------------------------------------------------------------------------- /include/Il2cppResolver/BasicStructs/Vector2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/Il2cppResolver/BasicStructs/Vector2.h -------------------------------------------------------------------------------- /include/Il2cppResolver/BasicStructs/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/Il2cppResolver/BasicStructs/Vector3.h -------------------------------------------------------------------------------- /include/Il2cppResolver/Il2cppApi/il2cppApiFunctions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/Il2cppResolver/Il2cppApi/il2cppApiFunctions.h -------------------------------------------------------------------------------- /include/Il2cppResolver/Il2cppApi/il2cppClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/Il2cppResolver/Il2cppApi/il2cppClass.h -------------------------------------------------------------------------------- /include/Il2cppResolver/Il2cppApi/il2cppTabledefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/Il2cppResolver/Il2cppApi/il2cppTabledefs.h -------------------------------------------------------------------------------- /include/Il2cppResolver/ResolverInit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/Il2cppResolver/ResolverInit.hpp -------------------------------------------------------------------------------- /include/ImGUI/backends/imgui_impl_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/ImGUI/backends/imgui_impl_android.h -------------------------------------------------------------------------------- /include/ImGUI/backends/imgui_impl_opengl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/ImGUI/backends/imgui_impl_opengl3.h -------------------------------------------------------------------------------- /include/ImGUI/font/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/ImGUI/font/Font.h -------------------------------------------------------------------------------- /include/ImGUI/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/ImGUI/imconfig.h -------------------------------------------------------------------------------- /include/ImGUI/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/ImGUI/imgui.h -------------------------------------------------------------------------------- /include/ImGUI/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/ImGUI/imgui_internal.h -------------------------------------------------------------------------------- /include/ImGUI/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/ImGUI/imstb_rectpack.h -------------------------------------------------------------------------------- /include/ImGUI/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/ImGUI/imstb_textedit.h -------------------------------------------------------------------------------- /include/ImGUI/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/ImGUI/imstb_truetype.h -------------------------------------------------------------------------------- /include/Json/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/Json/json.hpp -------------------------------------------------------------------------------- /include/MapTools/MapTools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/MapTools/MapTools.hpp -------------------------------------------------------------------------------- /include/MemoryTools/MemoryTools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/MemoryTools/MemoryTools.hpp -------------------------------------------------------------------------------- /include/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/README.md -------------------------------------------------------------------------------- /include/curl/curl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/curl/curl.h -------------------------------------------------------------------------------- /include/curl/curlver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/curl/curlver.h -------------------------------------------------------------------------------- /include/curl/easy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/curl/easy.h -------------------------------------------------------------------------------- /include/curl/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/curl/header.h -------------------------------------------------------------------------------- /include/curl/mprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/curl/mprintf.h -------------------------------------------------------------------------------- /include/curl/multi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/curl/multi.h -------------------------------------------------------------------------------- /include/curl/options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/curl/options.h -------------------------------------------------------------------------------- /include/curl/stdcheaders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/curl/stdcheaders.h -------------------------------------------------------------------------------- /include/curl/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/curl/system.h -------------------------------------------------------------------------------- /include/curl/typecheck-gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/curl/typecheck-gcc.h -------------------------------------------------------------------------------- /include/curl/urlapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/include/curl/urlapi.h -------------------------------------------------------------------------------- /libSsageObfuscator.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/libSsageObfuscator.so -------------------------------------------------------------------------------- /libs/README.md: -------------------------------------------------------------------------------- 1 | libs -------------------------------------------------------------------------------- /libs/curl/android/arm64-v8a/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/libs/curl/android/arm64-v8a/libcurl.a -------------------------------------------------------------------------------- /libs/curl/android/armeabi-v7a/libcurl.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/libs/curl/android/armeabi-v7a/libcurl.a -------------------------------------------------------------------------------- /libs/dobby/android/arm64-v8a/libdobby.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/libs/dobby/android/arm64-v8a/libdobby.a -------------------------------------------------------------------------------- /libs/dobby/android/armeabi-v7a/libdobby.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/libs/dobby/android/armeabi-v7a/libdobby.a -------------------------------------------------------------------------------- /libs/dobby/android/x86/libdobby.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/libs/dobby/android/x86/libdobby.a -------------------------------------------------------------------------------- /libs/dobby/android/x86_64/libdobby.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/libs/dobby/android/x86_64/libdobby.a -------------------------------------------------------------------------------- /logcat.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/logcat.bat -------------------------------------------------------------------------------- /logcat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/logcat.sh -------------------------------------------------------------------------------- /outputs/README.md: -------------------------------------------------------------------------------- 1 | 编译输出产物存放在这里 -------------------------------------------------------------------------------- /outputs/libs/arm64-v8a/libUnityCheat.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/outputs/libs/arm64-v8a/libUnityCheat.so -------------------------------------------------------------------------------- /push.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/push.bat -------------------------------------------------------------------------------- /push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/push.sh -------------------------------------------------------------------------------- /res/README.md: -------------------------------------------------------------------------------- 1 | # RES使用说明 2 | -------------------------------------------------------------------------------- /src/UnityCheat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/src/UnityCheat.cpp -------------------------------------------------------------------------------- /src/UnityCheat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/src/UnityCheat.hpp -------------------------------------------------------------------------------- /utils/AndroidProp/AndroidProp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/utils/AndroidProp/AndroidProp.cpp -------------------------------------------------------------------------------- /utils/AndroidProp/README.md: -------------------------------------------------------------------------------- 1 | # AndroidProp 2 | 3 | 获取一些安卓系统信息 -------------------------------------------------------------------------------- /utils/ImGUI/backends/imgui_impl_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/utils/ImGUI/backends/imgui_impl_android.cpp -------------------------------------------------------------------------------- /utils/ImGUI/backends/imgui_impl_opengl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/utils/ImGUI/backends/imgui_impl_opengl3.cpp -------------------------------------------------------------------------------- /utils/ImGUI/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/utils/ImGUI/imgui.cpp -------------------------------------------------------------------------------- /utils/ImGUI/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/utils/ImGUI/imgui_draw.cpp -------------------------------------------------------------------------------- /utils/ImGUI/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/utils/ImGUI/imgui_tables.cpp -------------------------------------------------------------------------------- /utils/ImGUI/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/utils/ImGUI/imgui_widgets.cpp -------------------------------------------------------------------------------- /utils/MapTools/MapTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/utils/MapTools/MapTools.cpp -------------------------------------------------------------------------------- /utils/MemoryTools/MemoryTools.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/utils/MemoryTools/MemoryTools.cpp -------------------------------------------------------------------------------- /utils/MemoryTools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/utils/MemoryTools/README.md -------------------------------------------------------------------------------- /utils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SsageParuders/CheatUnityGames/HEAD/utils/README.md --------------------------------------------------------------------------------