├── .gitattributes ├── .gitignore ├── .idea ├── .gitignore ├── compiler.xml ├── jarRepositories.xml └── misc.xml ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── module.gradle ├── module ├── .gitignore ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── cpp │ ├── Drawing.cpp │ ├── External │ ├── Android.mk │ ├── Dobby │ │ ├── dobby.h │ │ └── libs │ │ │ ├── arm64-v8a │ │ │ └── libdobby.a │ │ │ ├── armeabi-v7a │ │ │ └── libdobby.a │ │ │ ├── x86 │ │ │ └── libdobby.a │ │ │ └── x86_64 │ │ │ └── libdobby.a │ ├── ImGui │ │ ├── backends │ │ │ ├── android_native_app_glue.h │ │ │ ├── imgui_impl_android.cpp │ │ │ ├── imgui_impl_android.h │ │ │ ├── imgui_impl_opengl3.cpp │ │ │ ├── imgui_impl_opengl3.h │ │ │ └── imgui_impl_opengl3_loader.h │ │ ├── imconfig.h │ │ ├── imgui.cpp │ │ ├── imgui.h │ │ ├── imgui_demo.cpp │ │ ├── imgui_draw.cpp │ │ ├── imgui_internal.h │ │ ├── imgui_tables.cpp │ │ ├── imgui_widgets.cpp │ │ ├── imstb_rectpack.h │ │ ├── imstb_textedit.h │ │ └── imstb_truetype.h │ └── KittyMemory │ │ ├── KittyMemory.cpp │ │ ├── KittyMemory.h │ │ ├── KittyUtils.cpp │ │ ├── KittyUtils.h │ │ ├── MemoryBackup.cpp │ │ ├── MemoryBackup.h │ │ ├── MemoryPatch.cpp │ │ └── MemoryPatch.h │ ├── Headers │ ├── Drawing.hpp │ ├── Logger.hpp │ ├── ModMenu.hpp │ └── Utility.hpp │ ├── Include │ ├── ESP.h │ ├── Roboto-Regular.h │ └── zygisk.hpp │ ├── Main.cpp │ ├── ModMenu.cpp │ └── Utility.cpp ├── settings.gradle └── template └── magisk_module ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script └── module.prop /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/.idea/jarRepositories.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/gradlew.bat -------------------------------------------------------------------------------- /module.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module.gradle -------------------------------------------------------------------------------- /module/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/.gitignore -------------------------------------------------------------------------------- /module/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/build.gradle -------------------------------------------------------------------------------- /module/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /module/src/main/cpp/Drawing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/Drawing.cpp -------------------------------------------------------------------------------- /module/src/main/cpp/External/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/Android.mk -------------------------------------------------------------------------------- /module/src/main/cpp/External/Dobby/dobby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/Dobby/dobby.h -------------------------------------------------------------------------------- /module/src/main/cpp/External/Dobby/libs/arm64-v8a/libdobby.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/Dobby/libs/arm64-v8a/libdobby.a -------------------------------------------------------------------------------- /module/src/main/cpp/External/Dobby/libs/armeabi-v7a/libdobby.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/Dobby/libs/armeabi-v7a/libdobby.a -------------------------------------------------------------------------------- /module/src/main/cpp/External/Dobby/libs/x86/libdobby.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/Dobby/libs/x86/libdobby.a -------------------------------------------------------------------------------- /module/src/main/cpp/External/Dobby/libs/x86_64/libdobby.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/Dobby/libs/x86_64/libdobby.a -------------------------------------------------------------------------------- /module/src/main/cpp/External/ImGui/backends/android_native_app_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/ImGui/backends/android_native_app_glue.h -------------------------------------------------------------------------------- /module/src/main/cpp/External/ImGui/backends/imgui_impl_android.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/ImGui/backends/imgui_impl_android.cpp -------------------------------------------------------------------------------- /module/src/main/cpp/External/ImGui/backends/imgui_impl_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/ImGui/backends/imgui_impl_android.h -------------------------------------------------------------------------------- /module/src/main/cpp/External/ImGui/backends/imgui_impl_opengl3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/ImGui/backends/imgui_impl_opengl3.cpp -------------------------------------------------------------------------------- /module/src/main/cpp/External/ImGui/backends/imgui_impl_opengl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/ImGui/backends/imgui_impl_opengl3.h -------------------------------------------------------------------------------- /module/src/main/cpp/External/ImGui/backends/imgui_impl_opengl3_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/ImGui/backends/imgui_impl_opengl3_loader.h -------------------------------------------------------------------------------- /module/src/main/cpp/External/ImGui/imconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/ImGui/imconfig.h -------------------------------------------------------------------------------- /module/src/main/cpp/External/ImGui/imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/ImGui/imgui.cpp -------------------------------------------------------------------------------- /module/src/main/cpp/External/ImGui/imgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/ImGui/imgui.h -------------------------------------------------------------------------------- /module/src/main/cpp/External/ImGui/imgui_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/ImGui/imgui_demo.cpp -------------------------------------------------------------------------------- /module/src/main/cpp/External/ImGui/imgui_draw.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/ImGui/imgui_draw.cpp -------------------------------------------------------------------------------- /module/src/main/cpp/External/ImGui/imgui_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/ImGui/imgui_internal.h -------------------------------------------------------------------------------- /module/src/main/cpp/External/ImGui/imgui_tables.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/ImGui/imgui_tables.cpp -------------------------------------------------------------------------------- /module/src/main/cpp/External/ImGui/imgui_widgets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/ImGui/imgui_widgets.cpp -------------------------------------------------------------------------------- /module/src/main/cpp/External/ImGui/imstb_rectpack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/ImGui/imstb_rectpack.h -------------------------------------------------------------------------------- /module/src/main/cpp/External/ImGui/imstb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/ImGui/imstb_textedit.h -------------------------------------------------------------------------------- /module/src/main/cpp/External/ImGui/imstb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/ImGui/imstb_truetype.h -------------------------------------------------------------------------------- /module/src/main/cpp/External/KittyMemory/KittyMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/KittyMemory/KittyMemory.cpp -------------------------------------------------------------------------------- /module/src/main/cpp/External/KittyMemory/KittyMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/KittyMemory/KittyMemory.h -------------------------------------------------------------------------------- /module/src/main/cpp/External/KittyMemory/KittyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/KittyMemory/KittyUtils.cpp -------------------------------------------------------------------------------- /module/src/main/cpp/External/KittyMemory/KittyUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/KittyMemory/KittyUtils.h -------------------------------------------------------------------------------- /module/src/main/cpp/External/KittyMemory/MemoryBackup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/KittyMemory/MemoryBackup.cpp -------------------------------------------------------------------------------- /module/src/main/cpp/External/KittyMemory/MemoryBackup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/KittyMemory/MemoryBackup.h -------------------------------------------------------------------------------- /module/src/main/cpp/External/KittyMemory/MemoryPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/KittyMemory/MemoryPatch.cpp -------------------------------------------------------------------------------- /module/src/main/cpp/External/KittyMemory/MemoryPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/External/KittyMemory/MemoryPatch.h -------------------------------------------------------------------------------- /module/src/main/cpp/Headers/Drawing.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/Headers/Drawing.hpp -------------------------------------------------------------------------------- /module/src/main/cpp/Headers/Logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/Headers/Logger.hpp -------------------------------------------------------------------------------- /module/src/main/cpp/Headers/ModMenu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/Headers/ModMenu.hpp -------------------------------------------------------------------------------- /module/src/main/cpp/Headers/Utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/Headers/Utility.hpp -------------------------------------------------------------------------------- /module/src/main/cpp/Include/ESP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/Include/ESP.h -------------------------------------------------------------------------------- /module/src/main/cpp/Include/Roboto-Regular.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/Include/Roboto-Regular.h -------------------------------------------------------------------------------- /module/src/main/cpp/Include/zygisk.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/Include/zygisk.hpp -------------------------------------------------------------------------------- /module/src/main/cpp/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/Main.cpp -------------------------------------------------------------------------------- /module/src/main/cpp/ModMenu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/ModMenu.cpp -------------------------------------------------------------------------------- /module/src/main/cpp/Utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/module/src/main/cpp/Utility.cpp -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':module' -------------------------------------------------------------------------------- /template/magisk_module/META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/template/magisk_module/META-INF/com/google/android/update-binary -------------------------------------------------------------------------------- /template/magisk_module/META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /template/magisk_module/module.prop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reveny/Zygisk-ImGui-Mod-Menu/HEAD/template/magisk_module/module.prop --------------------------------------------------------------------------------