├── 0,17,4.7z ├── 0,18,0.cs ├── 0.18.0.txt ├── 123.zip ├── 19.cs ├── Anemone ├── Anemone │ ├── HelperFiles │ │ ├── DeObfMostText.sh │ │ ├── DecryptOffsets.sh │ │ ├── EncryptOffsets.sh │ │ ├── ObfMostText.sh │ │ └── utils.h │ ├── KittyMemory │ │ ├── KittyMemory.cpp │ │ ├── KittyMemory.hpp │ │ ├── KittyUtils.cpp │ │ ├── KittyUtils.hpp │ │ ├── MemoryBackup.cpp │ │ ├── MemoryBackup.hpp │ │ ├── MemoryPatch.cpp │ │ ├── MemoryPatch.hpp │ │ ├── Read Me.txt │ │ ├── writeData.cpp │ │ └── writeData.hpp │ ├── Macros.h │ ├── Makefile │ ├── Menu.h │ ├── Menu.mm │ ├── Obfuscate.h │ ├── SCLAlertView │ │ ├── SCLAlertView.h │ │ ├── SCLAlertView.m │ │ ├── SCLAlertViewResponder.h │ │ ├── SCLAlertViewResponder.m │ │ ├── SCLAlertViewStyleKit.h │ │ ├── SCLAlertViewStyleKit.m │ │ ├── SCLButton.h │ │ ├── SCLButton.m │ │ ├── SCLMacros.h │ │ ├── SCLSwitchView.h │ │ ├── SCLSwitchView.m │ │ ├── SCLTextView.h │ │ ├── SCLTextView.m │ │ ├── SCLTimerDisplay.h │ │ ├── SCLTimerDisplay.m │ │ ├── UIImage+ImageEffects.h │ │ └── UIImage+ImageEffects.m │ ├── Tweak.txt │ ├── Tweak.xm │ ├── Vector3.h │ ├── anemonehack.plist │ ├── control │ └── versionCheck.sh ├── HelperFiles │ ├── DeObfMostText.sh │ ├── DecryptOffsets.sh │ ├── EncryptOffsets.sh │ ├── ObfMostText.sh │ └── utils.h ├── KittyMemory │ ├── KittyMemory.cpp │ ├── KittyMemory.hpp │ ├── KittyUtils.cpp │ ├── KittyUtils.hpp │ ├── MemoryBackup.cpp │ ├── MemoryBackup.hpp │ ├── MemoryPatch.cpp │ ├── MemoryPatch.hpp │ ├── Read Me.txt │ ├── writeData.cpp │ └── writeData.hpp ├── Macros.h ├── Makefile ├── Menu.h ├── Menu.mm ├── Obfuscate.h ├── SCLAlertView │ ├── SCLAlertView.h │ ├── SCLAlertView.m │ ├── SCLAlertViewResponder.h │ ├── SCLAlertViewResponder.m │ ├── SCLAlertViewStyleKit.h │ ├── SCLAlertViewStyleKit.m │ ├── SCLButton.h │ ├── SCLButton.m │ ├── SCLMacros.h │ ├── SCLSwitchView.h │ ├── SCLSwitchView.m │ ├── SCLTextView.h │ ├── SCLTextView.m │ ├── SCLTimerDisplay.h │ ├── SCLTimerDisplay.m │ ├── UIImage+ImageEffects.h │ └── UIImage+ImageEffects.m ├── Tweak.txt ├── Tweak.xm ├── anemonehack.plist └── control ├── KittyMemory.zip ├── Menu (2).mm ├── Menu (3).mm ├── Menu (5).mm ├── Menu (7).mm ├── Offsets by @rapidsoft.txt ├── README.md ├── Tweak (1).xm ├── Tweak (10) (2).xm ├── Tweak (2).xm ├── Tweak (3).xm ├── Tweak (36).xm ├── Tweak (4).xm ├── Tweak (64) (2).xm ├── Tweak (65).xm ├── Tweak4 (4).xm ├── Tweak4.xm ├── hudware ├── KittyMemory │ ├── KittyMemory.cpp │ ├── KittyMemory.hpp │ ├── MemoryPatch.cpp │ ├── MemoryPatch.hpp │ ├── Read Me.txt │ └── initializer_list ├── Macros.h ├── Makefile ├── Menu.h ├── Menu.mm ├── SCLAlertView │ ├── SCLAlertView.h │ ├── SCLAlertView.m │ ├── SCLAlertViewResponder.h │ ├── SCLAlertViewResponder.m │ ├── SCLAlertViewStyleKit.h │ ├── SCLAlertViewStyleKit.m │ ├── SCLButton.h │ ├── SCLButton.m │ ├── SCLMacros.h │ ├── SCLSwitchView.h │ ├── SCLSwitchView.m │ ├── SCLTextView.h │ ├── SCLTextView.m │ ├── SCLTimerDisplay.h │ ├── SCLTimerDisplay.m │ ├── UIImage+ImageEffects.h │ └── UIImage+ImageEffects.m ├── Source.xm ├── SwitchesTemplate.h ├── SwitchesTemplate.mm ├── control ├── gg.sh ├── hudware.plist └── layout │ └── Library │ └── MobileSubstrate │ └── DynamicLibraries │ └── HD.bundle │ ├── d1.png │ ├── d2.png │ ├── d3.png │ ├── d4.png │ ├── d5.png │ ├── f1.png │ ├── f2.png │ ├── f3.png │ ├── f4.png │ ├── f5.png │ └── f6.png ├── imgui-js-1.53 ├── LICENSE.txt ├── Makefile ├── README.md ├── bind-imgui.cpp ├── bind-imgui.d.ts ├── bind-imgui.js ├── emscripten.d.ts ├── example │ ├── imgui_impl.js │ ├── imgui_impl.ts │ ├── index.html │ ├── index.js │ ├── main.js │ ├── main.ts │ └── tsconfig.json ├── imconfig.js ├── imconfig.ts ├── imgui.js ├── imgui.ts ├── imgui_demo.js ├── imgui_demo.ts ├── imgui_memory_editor.js ├── imgui_memory_editor.ts ├── package.json └── tsconfig.json ├── juster ├── CGView.h ├── CGView.m ├── KittyMemory │ ├── KittyMemory.cpp │ ├── KittyMemory.hpp │ ├── KittyUtils.cpp │ ├── KittyUtils.hpp │ ├── MemoryBackup.cpp │ ├── MemoryBackup.hpp │ ├── MemoryPatch.cpp │ ├── MemoryPatch.hpp │ ├── Read Me.txt │ ├── writeData.cpp │ └── writeData.hpp ├── Macros.h ├── Makefile ├── Menu.h ├── Menu.mm ├── NIC │ ├── control │ └── control.pl ├── Obfuscate.h ├── README.md ├── SCLAlertView │ ├── SCLAlertView.h │ ├── SCLAlertView.m │ ├── SCLAlertViewResponder.h │ ├── SCLAlertViewResponder.m │ ├── SCLAlertViewStyleKit.h │ ├── SCLAlertViewStyleKit.m │ ├── SCLButton.h │ ├── SCLButton.m │ ├── SCLMacros.h │ ├── SCLSwitchView.h │ ├── SCLSwitchView.m │ ├── SCLTextView.h │ ├── SCLTextView.m │ ├── SCLTimerDisplay.h │ ├── SCLTimerDisplay.m │ ├── UIImage+ImageEffects.h │ └── UIImage+ImageEffects.m ├── SexMenu.xm ├── Tweak.xm ├── Vector3.h ├── Vector3.hpp ├── control ├── free.plist ├── packages │ └── melon_0.19.1_iphoneos-arm.deb └── versionCheck.sh ├── leonsoftr (2) └── leon │ ├── KittyMemory │ ├── KittyMemory.cpp │ ├── KittyMemory.hpp │ ├── KittyUtils.cpp │ ├── KittyUtils.hpp │ ├── MemoryBackup.cpp │ ├── MemoryBackup.hpp │ ├── MemoryPatch.cpp │ ├── MemoryPatch.hpp │ ├── Read Me.txt │ ├── writeData.cpp │ └── writeData.hpp │ ├── Macros.h │ ├── Makefile │ ├── Menu.h │ ├── Menu.mm │ ├── Obfuscate.h │ ├── SCLAlertView │ ├── SCLAlertView.h │ ├── SCLAlertView.m │ ├── SCLAlertViewResponder.h │ ├── SCLAlertViewResponder.m │ ├── SCLAlertViewStyleKit.h │ ├── SCLAlertViewStyleKit.m │ ├── SCLButton.h │ ├── SCLButton.m │ ├── SCLMacros.h │ ├── SCLSwitchView.h │ ├── SCLSwitchView.m │ ├── SCLTextView.h │ ├── SCLTextView.m │ ├── SCLTimerDisplay.h │ ├── SCLTimerDisplay.m │ ├── UIImage+ImageEffects.h │ └── UIImage+ImageEffects.m │ ├── Tweak.xm │ ├── Unity.h │ ├── Vector3.h │ ├── control │ ├── packages │ └── jayce_0.1_iphoneos-arm.deb │ ├── versionCheck.sh │ └── vip.plist ├── leonsoftr ├── KittyMemory │ ├── KittyMemory.cpp │ ├── KittyMemory.hpp │ ├── KittyUtils.cpp │ ├── KittyUtils.hpp │ ├── MemoryBackup.cpp │ ├── MemoryBackup.hpp │ ├── MemoryPatch.cpp │ ├── MemoryPatch.hpp │ ├── Read Me.txt │ ├── writeData.cpp │ └── writeData.hpp ├── Macros.h ├── Makefile ├── Menu.h ├── Menu.mm ├── Obfuscate.h ├── SCLAlertView │ ├── SCLAlertView.h │ ├── SCLAlertView.m │ ├── SCLAlertViewResponder.h │ ├── SCLAlertViewResponder.m │ ├── SCLAlertViewStyleKit.h │ ├── SCLAlertViewStyleKit.m │ ├── SCLButton.h │ ├── SCLButton.m │ ├── SCLMacros.h │ ├── SCLSwitchView.h │ ├── SCLSwitchView.m │ ├── SCLTextView.h │ ├── SCLTextView.m │ ├── SCLTimerDisplay.h │ ├── SCLTimerDisplay.m │ ├── UIImage+ImageEffects.h │ └── UIImage+ImageEffects.m ├── Tweak.xm ├── Unity.h ├── Vector3.h ├── control ├── packages │ └── jayce_0.1_iphoneos-arm.deb ├── versionCheck.sh └── vip.plist ├── mod.7z ├── r16Logo.h ├── remake.7z ├── remake ├── KittyMemory │ ├── KittyMemory.cpp │ ├── KittyMemory.hpp │ ├── KittyUtils.cpp │ ├── KittyUtils.hpp │ ├── MemoryBackup.cpp │ ├── MemoryBackup.hpp │ ├── MemoryPatch.cpp │ ├── MemoryPatch.hpp │ ├── Read Me.txt │ ├── writeData.cpp │ └── writeData.hpp ├── Macros.h ├── Makefile ├── Menu.h ├── Menu.mm ├── Obfuscate.h ├── SCLAlertView │ ├── SCLAlertView.h │ ├── SCLAlertView.m │ ├── SCLAlertViewResponder.h │ ├── SCLAlertViewResponder.m │ ├── SCLAlertViewStyleKit.h │ ├── SCLAlertViewStyleKit.m │ ├── SCLButton.h │ ├── SCLButton.m │ ├── SCLMacros.h │ ├── SCLSwitchView.h │ ├── SCLSwitchView.m │ ├── SCLTextView.h │ ├── SCLTextView.m │ ├── SCLTimerDisplay.h │ ├── SCLTimerDisplay.m │ ├── UIImage+ImageEffects.h │ └── UIImage+ImageEffects.m ├── Tweak.xm ├── Unity.h ├── Vector3.h ├── control ├── versionCheck.sh └── vip.plist ├── remake1 ├── KittyMemory │ ├── KittyMemory.cpp │ ├── KittyMemory.hpp │ ├── KittyUtils.cpp │ ├── KittyUtils.hpp │ ├── MemoryBackup.cpp │ ├── MemoryBackup.hpp │ ├── MemoryPatch.cpp │ ├── MemoryPatch.hpp │ ├── Read Me.txt │ ├── writeData.cpp │ └── writeData.hpp ├── Macros.h ├── Makefile ├── Menu.h ├── Menu.mm ├── Obfuscate.h ├── SCLAlertView │ ├── SCLAlertView.h │ ├── SCLAlertView.m │ ├── SCLAlertViewResponder.h │ ├── SCLAlertViewResponder.m │ ├── SCLAlertViewStyleKit.h │ ├── SCLAlertViewStyleKit.m │ ├── SCLButton.h │ ├── SCLButton.m │ ├── SCLMacros.h │ ├── SCLSwitchView.h │ ├── SCLSwitchView.m │ ├── SCLTextView.h │ ├── SCLTextView.m │ ├── SCLTimerDisplay.h │ ├── SCLTimerDisplay.m │ ├── UIImage+ImageEffects.h │ └── UIImage+ImageEffects.m ├── Tweak.xm ├── Unity.h ├── Vector3.h ├── control ├── versionCheck.sh └── vip.plist ├── rez.zip ├── rezolver.zip ├── rezolver2 ├── KittyMemory │ ├── KittyMemory.cpp │ ├── KittyMemory.hpp │ ├── KittyUtils.cpp │ ├── KittyUtils.hpp │ ├── MemoryBackup.cpp │ ├── MemoryBackup.hpp │ ├── MemoryPatch.cpp │ ├── MemoryPatch.hpp │ ├── Read Me.txt │ ├── writeData.cpp │ └── writeData.hpp ├── Macros.h ├── Makefile ├── Menu.h ├── Menu.mm ├── Obfuscate.h ├── Rezolver.plist ├── SCLAlertView │ ├── SCLAlertView.h │ ├── SCLAlertView.m │ ├── SCLAlertViewResponder.h │ ├── SCLAlertViewResponder.m │ ├── SCLAlertViewStyleKit.h │ ├── SCLAlertViewStyleKit.m │ ├── SCLButton.h │ ├── SCLButton.m │ ├── SCLMacros.h │ ├── SCLSwitchView.h │ ├── SCLSwitchView.m │ ├── SCLTextView.h │ ├── SCLTextView.m │ ├── SCLTimerDisplay.h │ ├── SCLTimerDisplay.m │ ├── UIImage+ImageEffects.h │ └── UIImage+ImageEffects.m ├── Tweak.xm ├── control ├── packages │ └── com.free.rezolver_0.18.5_iphoneos-arm.deb └── versionCheck.sh ├── sample.xm ├── sex ├── HelperFiles │ ├── DeObfMostText.sh │ ├── DecryptOffsets.sh │ ├── EncryptOffsets.sh │ ├── ObfMostText.sh │ └── utils.h ├── KittyMemory │ ├── KittyMemory.cpp │ ├── KittyMemory.hpp │ ├── KittyUtils.cpp │ ├── KittyUtils.hpp │ ├── MemoryBackup.cpp │ ├── MemoryBackup.hpp │ ├── MemoryPatch.cpp │ ├── MemoryPatch.hpp │ ├── Read Me.txt │ ├── writeData.cpp │ └── writeData.hpp ├── Macros.h ├── Makefile ├── Menu.h ├── Menu.mm ├── Obfuscate.h ├── SCLAlertView │ ├── SCLAlertView.h │ ├── SCLAlertView.m │ ├── SCLAlertViewResponder.h │ ├── SCLAlertViewResponder.m │ ├── SCLAlertViewStyleKit.h │ ├── SCLAlertViewStyleKit.m │ ├── SCLButton.h │ ├── SCLButton.m │ ├── SCLMacros.h │ ├── SCLSwitchView.h │ ├── SCLSwitchView.m │ ├── SCLTextView.h │ ├── SCLTextView.m │ ├── SCLTimerDisplay.h │ ├── SCLTimerDisplay.m │ ├── UIImage+ImageEffects.h │ └── UIImage+ImageEffects.m ├── Tweak.xm ├── Vector3.h ├── control ├── hudware.plist ├── packages │ └── hudware_0.19.0_iphoneos-arm.deb └── versionCheck.sh ├── skinchanger.h ├── source (3).zip ├── source ├── HelperFiles │ ├── DeObfMostText.sh │ ├── DecryptOffsets.sh │ ├── EncryptOffsets.sh │ ├── ObfMostText.sh │ └── utils.h ├── KittyMemory │ ├── KittyMemory.cpp │ ├── KittyMemory.hpp │ ├── KittyUtils.cpp │ ├── KittyUtils.hpp │ ├── MemoryBackup.cpp │ ├── MemoryBackup.hpp │ ├── MemoryPatch.cpp │ ├── MemoryPatch.hpp │ ├── Read Me.txt │ ├── writeData.cpp │ └── writeData.hpp ├── Macros.h ├── Makefile ├── Menu.h ├── Menu.mm ├── Obfuscate.h ├── SCLAlertView │ ├── SCLAlertView.h │ ├── SCLAlertView.m │ ├── SCLAlertViewResponder.h │ ├── SCLAlertViewResponder.m │ ├── SCLAlertViewStyleKit.h │ ├── SCLAlertViewStyleKit.m │ ├── SCLButton.h │ ├── SCLButton.m │ ├── SCLMacros.h │ ├── SCLSwitchView.h │ ├── SCLSwitchView.m │ ├── SCLTextView.h │ ├── SCLTextView.m │ ├── SCLTimerDisplay.h │ ├── SCLTimerDisplay.m │ ├── UIImage+ImageEffects.h │ └── UIImage+ImageEffects.m ├── Tweak.xm ├── Vector3.h ├── control ├── hudware.plist └── versionCheck.sh ├── source2 ├── KittyMemory │ ├── KittyMemory.cpp │ ├── KittyMemory.hpp │ ├── KittyUtils.cpp │ ├── KittyUtils.hpp │ ├── MemoryBackup.cpp │ ├── MemoryBackup.hpp │ ├── MemoryPatch.cpp │ ├── MemoryPatch.hpp │ ├── Read Me.txt │ ├── writeData.cpp │ └── writeData.hpp ├── Macros.h ├── Makefile ├── Menu.h ├── Menu.mm ├── Obfuscate.h ├── SCLAlertView │ ├── SCLAlertView.h │ ├── SCLAlertView.m │ ├── SCLAlertViewResponder.h │ ├── SCLAlertViewResponder.m │ ├── SCLAlertViewStyleKit.h │ ├── SCLAlertViewStyleKit.m │ ├── SCLButton.h │ ├── SCLButton.m │ ├── SCLMacros.h │ ├── SCLSwitchView.h │ ├── SCLSwitchView.m │ ├── SCLTextView.h │ ├── SCLTextView.m │ ├── SCLTimerDisplay.h │ ├── SCLTimerDisplay.m │ ├── UIImage+ImageEffects.h │ └── UIImage+ImageEffects.m ├── Source.xm ├── control ├── layout │ └── Library │ │ └── MobileSubstrate │ │ └── DynamicLibraries │ │ └── HD.bundle │ │ ├── d1.png │ │ ├── d2.png │ │ ├── d3.png │ │ ├── d4.png │ │ ├── d5.png │ │ ├── f1.png │ │ ├── f2.png │ │ ├── f3.png │ │ ├── f4.png │ │ ├── f5.png │ │ └── f6.png ├── source.plist └── versionCheck.sh ├── source3 ├── KittyMemory │ ├── KittyMemory.cpp │ ├── KittyMemory.hpp │ ├── KittyUtils.cpp │ ├── KittyUtils.hpp │ ├── MemoryBackup.cpp │ ├── MemoryBackup.hpp │ ├── MemoryPatch.cpp │ ├── MemoryPatch.hpp │ ├── Read Me.txt │ ├── writeData.cpp │ └── writeData.hpp ├── Macros.h ├── Makefile ├── Menu.h ├── Menu.mm ├── Obfuscate.h ├── SCLAlertView │ ├── SCLAlertView.h │ ├── SCLAlertView.m │ ├── SCLAlertViewResponder.h │ ├── SCLAlertViewResponder.m │ ├── SCLAlertViewStyleKit.h │ ├── SCLAlertViewStyleKit.m │ ├── SCLButton.h │ ├── SCLButton.m │ ├── SCLMacros.h │ ├── SCLSwitchView.h │ ├── SCLSwitchView.m │ ├── SCLTextView.h │ ├── SCLTextView.m │ ├── SCLTimerDisplay.h │ ├── SCLTimerDisplay.m │ ├── UIImage+ImageEffects.h │ └── UIImage+ImageEffects.m ├── Tweak.xm ├── control ├── packages │ └── source_1.0_iphoneos-arm.deb ├── source.plist └── versionCheck.sh ├── template (5).7z ├── template ├── KittyMemory │ ├── KittyMemory.cpp │ ├── KittyMemory.hpp │ ├── KittyUtils.cpp │ ├── KittyUtils.hpp │ ├── MemoryBackup.cpp │ ├── MemoryBackup.hpp │ ├── MemoryPatch.cpp │ ├── MemoryPatch.hpp │ ├── Read Me.txt │ ├── writeData.cpp │ └── writeData.hpp ├── Macros.h ├── Makefile ├── Menu.h ├── Menu.mm ├── NIC │ ├── control │ └── control.pl ├── Obfuscate.h ├── SCLAlertView │ ├── SCLAlertView.h │ ├── SCLAlertView.m │ ├── SCLAlertViewResponder.h │ ├── SCLAlertViewResponder.m │ ├── SCLAlertViewStyleKit.h │ ├── SCLAlertViewStyleKit.m │ ├── SCLButton.h │ ├── SCLButton.m │ ├── SCLMacros.h │ ├── SCLSwitchView.h │ ├── SCLSwitchView.m │ ├── SCLTextView.h │ ├── SCLTextView.m │ ├── SCLTimerDisplay.h │ ├── SCLTimerDisplay.m │ ├── UIImage+ImageEffects.h │ └── UIImage+ImageEffects.m ├── Tweak.xm ├── control ├── standoffhack.plist └── versionCheck.sh ├── template1 ├── KittyMemory │ ├── KittyMemory.cpp │ ├── KittyMemory.hpp │ ├── KittyUtils.cpp │ ├── KittyUtils.hpp │ ├── MemoryBackup.cpp │ ├── MemoryBackup.hpp │ ├── MemoryPatch.cpp │ ├── MemoryPatch.hpp │ ├── Read Me.txt │ ├── writeData.cpp │ └── writeData.hpp ├── Macros.h ├── Makefile ├── Menu.h ├── Menu.mm ├── SCLAlertView │ ├── SCLAlertView.h │ ├── SCLAlertView.m │ ├── SCLAlertViewResponder.h │ ├── SCLAlertViewResponder.m │ ├── SCLAlertViewStyleKit.h │ ├── SCLAlertViewStyleKit.m │ ├── SCLButton.h │ ├── SCLButton.m │ ├── SCLMacros.h │ ├── SCLSwitchView.h │ ├── SCLSwitchView.m │ ├── SCLTextView.h │ ├── SCLTextView.m │ ├── SCLTimerDisplay.h │ ├── SCLTimerDisplay.m │ ├── UIImage+ImageEffects.h │ └── UIImage+ImageEffects.m ├── Tweak.xm ├── control ├── sample.xm ├── template.plist └── versionCheck.sh ├── tixtap ├── KittyMemory │ ├── KittyMemory.cpp │ ├── KittyMemory.hpp │ ├── KittyUtils.cpp │ ├── KittyUtils.hpp │ ├── MemoryBackup.cpp │ ├── MemoryBackup.hpp │ ├── MemoryPatch.cpp │ ├── MemoryPatch.hpp │ ├── Read Me.txt │ ├── writeData.cpp │ └── writeData.hpp ├── Macros.h ├── Makefile ├── Menu.h ├── Menu.mm ├── Obfuscate.h ├── SCLAlertView │ ├── SCLAlertView.h │ ├── SCLAlertView.m │ ├── SCLAlertViewResponder.h │ ├── SCLAlertViewResponder.m │ ├── SCLAlertViewStyleKit.h │ ├── SCLAlertViewStyleKit.m │ ├── SCLButton.h │ ├── SCLButton.m │ ├── SCLMacros.h │ ├── SCLSwitchView.h │ ├── SCLSwitchView.m │ ├── SCLTextView.h │ ├── SCLTextView.m │ ├── SCLTimerDisplay.h │ ├── SCLTimerDisplay.m │ ├── UIImage+ImageEffects.h │ └── UIImage+ImageEffects.m ├── Tweak.xm ├── control ├── tixtap.plist └── versionCheck.sh ├── watermark.m ├── zxc ├── KittyMemory │ ├── KittyMemory.cpp │ ├── KittyMemory.hpp │ ├── KittyUtils.cpp │ ├── KittyUtils.hpp │ ├── MemoryBackup.cpp │ ├── MemoryBackup.hpp │ ├── MemoryPatch.cpp │ ├── MemoryPatch.hpp │ ├── Read Me.txt │ ├── writeData.cpp │ └── writeData.hpp ├── Macros.h ├── Makefile ├── Menu.h ├── Menu.mm ├── Obfuscate.h ├── SCLAlertView │ ├── SCLAlertView.h │ ├── SCLAlertView.m │ ├── SCLAlertViewResponder.h │ ├── SCLAlertViewResponder.m │ ├── SCLAlertViewStyleKit.h │ ├── SCLAlertViewStyleKit.m │ ├── SCLButton.h │ ├── SCLButton.m │ ├── SCLMacros.h │ ├── SCLSwitchView.h │ ├── SCLSwitchView.m │ ├── SCLTextView.h │ ├── SCLTextView.m │ ├── SCLTimerDisplay.h │ ├── SCLTimerDisplay.m │ ├── UIImage+ImageEffects.h │ └── UIImage+ImageEffects.m ├── Tweak.xm ├── Unity.h ├── Vector3.h ├── control ├── packages │ └── jayce_0.1_iphoneos-arm.deb ├── versionCheck.sh └── vip.plist ├── zxc1 ├── KittyMemory │ ├── KittyMemory.cpp │ ├── KittyMemory.hpp │ ├── KittyUtils.cpp │ ├── KittyUtils.hpp │ ├── MemoryBackup.cpp │ ├── MemoryBackup.hpp │ ├── MemoryPatch.cpp │ ├── MemoryPatch.hpp │ ├── Read Me.txt │ ├── writeData.cpp │ └── writeData.hpp ├── Macros.h ├── Makefile ├── Menu.h ├── Menu.mm ├── Obfuscate.h ├── SCLAlertView │ ├── SCLAlertView.h │ ├── SCLAlertView.m │ ├── SCLAlertViewResponder.h │ ├── SCLAlertViewResponder.m │ ├── SCLAlertViewStyleKit.h │ ├── SCLAlertViewStyleKit.m │ ├── SCLButton.h │ ├── SCLButton.m │ ├── SCLMacros.h │ ├── SCLSwitchView.h │ ├── SCLSwitchView.m │ ├── SCLTextView.h │ ├── SCLTextView.m │ ├── SCLTimerDisplay.h │ ├── SCLTimerDisplay.m │ ├── UIImage+ImageEffects.h │ └── UIImage+ImageEffects.m ├── Tweak.xm ├── Unity.h ├── Vector3.h ├── control ├── packages │ └── jayce_0.1_iphoneos-arm.deb ├── versionCheck.sh └── vip.plist └── zxc3 ├── KittyMemory ├── KittyMemory.cpp ├── KittyMemory.hpp ├── KittyUtils.cpp ├── KittyUtils.hpp ├── MemoryBackup.cpp ├── MemoryBackup.hpp ├── MemoryPatch.cpp ├── MemoryPatch.hpp ├── Read Me.txt ├── writeData.cpp └── writeData.hpp ├── Macros.h ├── Makefile ├── Menu.h ├── Menu.mm ├── Obfuscate.h ├── SCLAlertView ├── SCLAlertView.h ├── SCLAlertView.m ├── SCLAlertViewResponder.h ├── SCLAlertViewResponder.m ├── SCLAlertViewStyleKit.h ├── SCLAlertViewStyleKit.m ├── SCLButton.h ├── SCLButton.m ├── SCLMacros.h ├── SCLSwitchView.h ├── SCLSwitchView.m ├── SCLTextView.h ├── SCLTextView.m ├── SCLTimerDisplay.h ├── SCLTimerDisplay.m ├── UIImage+ImageEffects.h └── UIImage+ImageEffects.m ├── Tweak.xm ├── Unity.h ├── Vector3.h ├── control ├── packages └── jayce_0.1_iphoneos-arm.deb ├── versionCheck.sh └── vip.plist /0,17,4.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/0,17,4.7z -------------------------------------------------------------------------------- /0,18,0.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/0,18,0.cs -------------------------------------------------------------------------------- /0.18.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/0.18.0.txt -------------------------------------------------------------------------------- /123.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/123.zip -------------------------------------------------------------------------------- /19.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/19.cs -------------------------------------------------------------------------------- /Anemone/Anemone/HelperFiles/DeObfMostText.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/HelperFiles/DeObfMostText.sh -------------------------------------------------------------------------------- /Anemone/Anemone/HelperFiles/DecryptOffsets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/HelperFiles/DecryptOffsets.sh -------------------------------------------------------------------------------- /Anemone/Anemone/HelperFiles/EncryptOffsets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/HelperFiles/EncryptOffsets.sh -------------------------------------------------------------------------------- /Anemone/Anemone/HelperFiles/ObfMostText.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/HelperFiles/ObfMostText.sh -------------------------------------------------------------------------------- /Anemone/Anemone/HelperFiles/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/HelperFiles/utils.h -------------------------------------------------------------------------------- /Anemone/Anemone/KittyMemory/KittyMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/KittyMemory/KittyMemory.cpp -------------------------------------------------------------------------------- /Anemone/Anemone/KittyMemory/KittyMemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/KittyMemory/KittyMemory.hpp -------------------------------------------------------------------------------- /Anemone/Anemone/KittyMemory/KittyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/KittyMemory/KittyUtils.cpp -------------------------------------------------------------------------------- /Anemone/Anemone/KittyMemory/KittyUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/KittyMemory/KittyUtils.hpp -------------------------------------------------------------------------------- /Anemone/Anemone/KittyMemory/MemoryBackup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/KittyMemory/MemoryBackup.cpp -------------------------------------------------------------------------------- /Anemone/Anemone/KittyMemory/MemoryBackup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/KittyMemory/MemoryBackup.hpp -------------------------------------------------------------------------------- /Anemone/Anemone/KittyMemory/MemoryPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/KittyMemory/MemoryPatch.cpp -------------------------------------------------------------------------------- /Anemone/Anemone/KittyMemory/MemoryPatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/KittyMemory/MemoryPatch.hpp -------------------------------------------------------------------------------- /Anemone/Anemone/KittyMemory/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/KittyMemory/Read Me.txt -------------------------------------------------------------------------------- /Anemone/Anemone/KittyMemory/writeData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/KittyMemory/writeData.cpp -------------------------------------------------------------------------------- /Anemone/Anemone/KittyMemory/writeData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/KittyMemory/writeData.hpp -------------------------------------------------------------------------------- /Anemone/Anemone/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/Macros.h -------------------------------------------------------------------------------- /Anemone/Anemone/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/Makefile -------------------------------------------------------------------------------- /Anemone/Anemone/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/Menu.h -------------------------------------------------------------------------------- /Anemone/Anemone/Menu.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/Menu.mm -------------------------------------------------------------------------------- /Anemone/Anemone/Obfuscate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/Obfuscate.h -------------------------------------------------------------------------------- /Anemone/Anemone/SCLAlertView/SCLAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/SCLAlertView/SCLAlertView.h -------------------------------------------------------------------------------- /Anemone/Anemone/SCLAlertView/SCLAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/SCLAlertView/SCLAlertView.m -------------------------------------------------------------------------------- /Anemone/Anemone/SCLAlertView/SCLAlertViewResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/SCLAlertView/SCLAlertViewResponder.h -------------------------------------------------------------------------------- /Anemone/Anemone/SCLAlertView/SCLAlertViewResponder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/SCLAlertView/SCLAlertViewResponder.m -------------------------------------------------------------------------------- /Anemone/Anemone/SCLAlertView/SCLAlertViewStyleKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/SCLAlertView/SCLAlertViewStyleKit.h -------------------------------------------------------------------------------- /Anemone/Anemone/SCLAlertView/SCLAlertViewStyleKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/SCLAlertView/SCLAlertViewStyleKit.m -------------------------------------------------------------------------------- /Anemone/Anemone/SCLAlertView/SCLButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/SCLAlertView/SCLButton.h -------------------------------------------------------------------------------- /Anemone/Anemone/SCLAlertView/SCLButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/SCLAlertView/SCLButton.m -------------------------------------------------------------------------------- /Anemone/Anemone/SCLAlertView/SCLMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/SCLAlertView/SCLMacros.h -------------------------------------------------------------------------------- /Anemone/Anemone/SCLAlertView/SCLSwitchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/SCLAlertView/SCLSwitchView.h -------------------------------------------------------------------------------- /Anemone/Anemone/SCLAlertView/SCLSwitchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/SCLAlertView/SCLSwitchView.m -------------------------------------------------------------------------------- /Anemone/Anemone/SCLAlertView/SCLTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/SCLAlertView/SCLTextView.h -------------------------------------------------------------------------------- /Anemone/Anemone/SCLAlertView/SCLTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/SCLAlertView/SCLTextView.m -------------------------------------------------------------------------------- /Anemone/Anemone/SCLAlertView/SCLTimerDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/SCLAlertView/SCLTimerDisplay.h -------------------------------------------------------------------------------- /Anemone/Anemone/SCLAlertView/SCLTimerDisplay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/SCLAlertView/SCLTimerDisplay.m -------------------------------------------------------------------------------- /Anemone/Anemone/SCLAlertView/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/SCLAlertView/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /Anemone/Anemone/SCLAlertView/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/SCLAlertView/UIImage+ImageEffects.m -------------------------------------------------------------------------------- /Anemone/Anemone/Tweak.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/Tweak.txt -------------------------------------------------------------------------------- /Anemone/Anemone/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/Tweak.xm -------------------------------------------------------------------------------- /Anemone/Anemone/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/Vector3.h -------------------------------------------------------------------------------- /Anemone/Anemone/anemonehack.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/anemonehack.plist -------------------------------------------------------------------------------- /Anemone/Anemone/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/control -------------------------------------------------------------------------------- /Anemone/Anemone/versionCheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Anemone/versionCheck.sh -------------------------------------------------------------------------------- /Anemone/HelperFiles/DeObfMostText.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/HelperFiles/DeObfMostText.sh -------------------------------------------------------------------------------- /Anemone/HelperFiles/DecryptOffsets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/HelperFiles/DecryptOffsets.sh -------------------------------------------------------------------------------- /Anemone/HelperFiles/EncryptOffsets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/HelperFiles/EncryptOffsets.sh -------------------------------------------------------------------------------- /Anemone/HelperFiles/ObfMostText.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/HelperFiles/ObfMostText.sh -------------------------------------------------------------------------------- /Anemone/HelperFiles/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/HelperFiles/utils.h -------------------------------------------------------------------------------- /Anemone/KittyMemory/KittyMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/KittyMemory/KittyMemory.cpp -------------------------------------------------------------------------------- /Anemone/KittyMemory/KittyMemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/KittyMemory/KittyMemory.hpp -------------------------------------------------------------------------------- /Anemone/KittyMemory/KittyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/KittyMemory/KittyUtils.cpp -------------------------------------------------------------------------------- /Anemone/KittyMemory/KittyUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/KittyMemory/KittyUtils.hpp -------------------------------------------------------------------------------- /Anemone/KittyMemory/MemoryBackup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/KittyMemory/MemoryBackup.cpp -------------------------------------------------------------------------------- /Anemone/KittyMemory/MemoryBackup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/KittyMemory/MemoryBackup.hpp -------------------------------------------------------------------------------- /Anemone/KittyMemory/MemoryPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/KittyMemory/MemoryPatch.cpp -------------------------------------------------------------------------------- /Anemone/KittyMemory/MemoryPatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/KittyMemory/MemoryPatch.hpp -------------------------------------------------------------------------------- /Anemone/KittyMemory/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/KittyMemory/Read Me.txt -------------------------------------------------------------------------------- /Anemone/KittyMemory/writeData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/KittyMemory/writeData.cpp -------------------------------------------------------------------------------- /Anemone/KittyMemory/writeData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/KittyMemory/writeData.hpp -------------------------------------------------------------------------------- /Anemone/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Macros.h -------------------------------------------------------------------------------- /Anemone/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Makefile -------------------------------------------------------------------------------- /Anemone/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Menu.h -------------------------------------------------------------------------------- /Anemone/Menu.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Menu.mm -------------------------------------------------------------------------------- /Anemone/Obfuscate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Obfuscate.h -------------------------------------------------------------------------------- /Anemone/SCLAlertView/SCLAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/SCLAlertView/SCLAlertView.h -------------------------------------------------------------------------------- /Anemone/SCLAlertView/SCLAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/SCLAlertView/SCLAlertView.m -------------------------------------------------------------------------------- /Anemone/SCLAlertView/SCLAlertViewResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/SCLAlertView/SCLAlertViewResponder.h -------------------------------------------------------------------------------- /Anemone/SCLAlertView/SCLAlertViewResponder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/SCLAlertView/SCLAlertViewResponder.m -------------------------------------------------------------------------------- /Anemone/SCLAlertView/SCLAlertViewStyleKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/SCLAlertView/SCLAlertViewStyleKit.h -------------------------------------------------------------------------------- /Anemone/SCLAlertView/SCLAlertViewStyleKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/SCLAlertView/SCLAlertViewStyleKit.m -------------------------------------------------------------------------------- /Anemone/SCLAlertView/SCLButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/SCLAlertView/SCLButton.h -------------------------------------------------------------------------------- /Anemone/SCLAlertView/SCLButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/SCLAlertView/SCLButton.m -------------------------------------------------------------------------------- /Anemone/SCLAlertView/SCLMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/SCLAlertView/SCLMacros.h -------------------------------------------------------------------------------- /Anemone/SCLAlertView/SCLSwitchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/SCLAlertView/SCLSwitchView.h -------------------------------------------------------------------------------- /Anemone/SCLAlertView/SCLSwitchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/SCLAlertView/SCLSwitchView.m -------------------------------------------------------------------------------- /Anemone/SCLAlertView/SCLTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/SCLAlertView/SCLTextView.h -------------------------------------------------------------------------------- /Anemone/SCLAlertView/SCLTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/SCLAlertView/SCLTextView.m -------------------------------------------------------------------------------- /Anemone/SCLAlertView/SCLTimerDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/SCLAlertView/SCLTimerDisplay.h -------------------------------------------------------------------------------- /Anemone/SCLAlertView/SCLTimerDisplay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/SCLAlertView/SCLTimerDisplay.m -------------------------------------------------------------------------------- /Anemone/SCLAlertView/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/SCLAlertView/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /Anemone/SCLAlertView/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/SCLAlertView/UIImage+ImageEffects.m -------------------------------------------------------------------------------- /Anemone/Tweak.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Tweak.txt -------------------------------------------------------------------------------- /Anemone/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/Tweak.xm -------------------------------------------------------------------------------- /Anemone/anemonehack.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/anemonehack.plist -------------------------------------------------------------------------------- /Anemone/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Anemone/control -------------------------------------------------------------------------------- /KittyMemory.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/KittyMemory.zip -------------------------------------------------------------------------------- /Menu (2).mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Menu (2).mm -------------------------------------------------------------------------------- /Menu (3).mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Menu (3).mm -------------------------------------------------------------------------------- /Menu (5).mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Menu (5).mm -------------------------------------------------------------------------------- /Menu (7).mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Menu (7).mm -------------------------------------------------------------------------------- /Offsets by @rapidsoft.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Offsets by @rapidsoft.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/README.md -------------------------------------------------------------------------------- /Tweak (1).xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Tweak (1).xm -------------------------------------------------------------------------------- /Tweak (10) (2).xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Tweak (10) (2).xm -------------------------------------------------------------------------------- /Tweak (2).xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Tweak (2).xm -------------------------------------------------------------------------------- /Tweak (3).xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Tweak (3).xm -------------------------------------------------------------------------------- /Tweak (36).xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Tweak (36).xm -------------------------------------------------------------------------------- /Tweak (4).xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Tweak (4).xm -------------------------------------------------------------------------------- /Tweak (64) (2).xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Tweak (64) (2).xm -------------------------------------------------------------------------------- /Tweak (65).xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Tweak (65).xm -------------------------------------------------------------------------------- /Tweak4 (4).xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Tweak4 (4).xm -------------------------------------------------------------------------------- /Tweak4.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/Tweak4.xm -------------------------------------------------------------------------------- /hudware/KittyMemory/KittyMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/KittyMemory/KittyMemory.cpp -------------------------------------------------------------------------------- /hudware/KittyMemory/KittyMemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/KittyMemory/KittyMemory.hpp -------------------------------------------------------------------------------- /hudware/KittyMemory/MemoryPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/KittyMemory/MemoryPatch.cpp -------------------------------------------------------------------------------- /hudware/KittyMemory/MemoryPatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/KittyMemory/MemoryPatch.hpp -------------------------------------------------------------------------------- /hudware/KittyMemory/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/KittyMemory/Read Me.txt -------------------------------------------------------------------------------- /hudware/KittyMemory/initializer_list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/KittyMemory/initializer_list -------------------------------------------------------------------------------- /hudware/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/Macros.h -------------------------------------------------------------------------------- /hudware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/Makefile -------------------------------------------------------------------------------- /hudware/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/Menu.h -------------------------------------------------------------------------------- /hudware/Menu.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/Menu.mm -------------------------------------------------------------------------------- /hudware/SCLAlertView/SCLAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/SCLAlertView/SCLAlertView.h -------------------------------------------------------------------------------- /hudware/SCLAlertView/SCLAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/SCLAlertView/SCLAlertView.m -------------------------------------------------------------------------------- /hudware/SCLAlertView/SCLAlertViewResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/SCLAlertView/SCLAlertViewResponder.h -------------------------------------------------------------------------------- /hudware/SCLAlertView/SCLAlertViewResponder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/SCLAlertView/SCLAlertViewResponder.m -------------------------------------------------------------------------------- /hudware/SCLAlertView/SCLAlertViewStyleKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/SCLAlertView/SCLAlertViewStyleKit.h -------------------------------------------------------------------------------- /hudware/SCLAlertView/SCLAlertViewStyleKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/SCLAlertView/SCLAlertViewStyleKit.m -------------------------------------------------------------------------------- /hudware/SCLAlertView/SCLButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/SCLAlertView/SCLButton.h -------------------------------------------------------------------------------- /hudware/SCLAlertView/SCLButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/SCLAlertView/SCLButton.m -------------------------------------------------------------------------------- /hudware/SCLAlertView/SCLMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/SCLAlertView/SCLMacros.h -------------------------------------------------------------------------------- /hudware/SCLAlertView/SCLSwitchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/SCLAlertView/SCLSwitchView.h -------------------------------------------------------------------------------- /hudware/SCLAlertView/SCLSwitchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/SCLAlertView/SCLSwitchView.m -------------------------------------------------------------------------------- /hudware/SCLAlertView/SCLTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/SCLAlertView/SCLTextView.h -------------------------------------------------------------------------------- /hudware/SCLAlertView/SCLTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/SCLAlertView/SCLTextView.m -------------------------------------------------------------------------------- /hudware/SCLAlertView/SCLTimerDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/SCLAlertView/SCLTimerDisplay.h -------------------------------------------------------------------------------- /hudware/SCLAlertView/SCLTimerDisplay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/SCLAlertView/SCLTimerDisplay.m -------------------------------------------------------------------------------- /hudware/SCLAlertView/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/SCLAlertView/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /hudware/SCLAlertView/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/SCLAlertView/UIImage+ImageEffects.m -------------------------------------------------------------------------------- /hudware/Source.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/Source.xm -------------------------------------------------------------------------------- /hudware/SwitchesTemplate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/SwitchesTemplate.h -------------------------------------------------------------------------------- /hudware/SwitchesTemplate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/SwitchesTemplate.mm -------------------------------------------------------------------------------- /hudware/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/control -------------------------------------------------------------------------------- /hudware/gg.sh: -------------------------------------------------------------------------------- 1 | make package -------------------------------------------------------------------------------- /hudware/hudware.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/hudware.plist -------------------------------------------------------------------------------- /hudware/layout/Library/MobileSubstrate/DynamicLibraries/HD.bundle/d1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/layout/Library/MobileSubstrate/DynamicLibraries/HD.bundle/d1.png -------------------------------------------------------------------------------- /hudware/layout/Library/MobileSubstrate/DynamicLibraries/HD.bundle/d2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/layout/Library/MobileSubstrate/DynamicLibraries/HD.bundle/d2.png -------------------------------------------------------------------------------- /hudware/layout/Library/MobileSubstrate/DynamicLibraries/HD.bundle/d3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/layout/Library/MobileSubstrate/DynamicLibraries/HD.bundle/d3.png -------------------------------------------------------------------------------- /hudware/layout/Library/MobileSubstrate/DynamicLibraries/HD.bundle/d4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/layout/Library/MobileSubstrate/DynamicLibraries/HD.bundle/d4.png -------------------------------------------------------------------------------- /hudware/layout/Library/MobileSubstrate/DynamicLibraries/HD.bundle/d5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/layout/Library/MobileSubstrate/DynamicLibraries/HD.bundle/d5.png -------------------------------------------------------------------------------- /hudware/layout/Library/MobileSubstrate/DynamicLibraries/HD.bundle/f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/layout/Library/MobileSubstrate/DynamicLibraries/HD.bundle/f1.png -------------------------------------------------------------------------------- /hudware/layout/Library/MobileSubstrate/DynamicLibraries/HD.bundle/f2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/layout/Library/MobileSubstrate/DynamicLibraries/HD.bundle/f2.png -------------------------------------------------------------------------------- /hudware/layout/Library/MobileSubstrate/DynamicLibraries/HD.bundle/f3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/layout/Library/MobileSubstrate/DynamicLibraries/HD.bundle/f3.png -------------------------------------------------------------------------------- /hudware/layout/Library/MobileSubstrate/DynamicLibraries/HD.bundle/f4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/layout/Library/MobileSubstrate/DynamicLibraries/HD.bundle/f4.png -------------------------------------------------------------------------------- /hudware/layout/Library/MobileSubstrate/DynamicLibraries/HD.bundle/f5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/layout/Library/MobileSubstrate/DynamicLibraries/HD.bundle/f5.png -------------------------------------------------------------------------------- /hudware/layout/Library/MobileSubstrate/DynamicLibraries/HD.bundle/f6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/hudware/layout/Library/MobileSubstrate/DynamicLibraries/HD.bundle/f6.png -------------------------------------------------------------------------------- /imgui-js-1.53/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/imgui-js-1.53/LICENSE.txt -------------------------------------------------------------------------------- /imgui-js-1.53/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/imgui-js-1.53/Makefile -------------------------------------------------------------------------------- /imgui-js-1.53/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/imgui-js-1.53/README.md -------------------------------------------------------------------------------- /imgui-js-1.53/bind-imgui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/imgui-js-1.53/bind-imgui.cpp -------------------------------------------------------------------------------- /imgui-js-1.53/bind-imgui.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/imgui-js-1.53/bind-imgui.d.ts -------------------------------------------------------------------------------- /imgui-js-1.53/bind-imgui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/imgui-js-1.53/bind-imgui.js -------------------------------------------------------------------------------- /imgui-js-1.53/emscripten.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/imgui-js-1.53/emscripten.d.ts -------------------------------------------------------------------------------- /imgui-js-1.53/example/imgui_impl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/imgui-js-1.53/example/imgui_impl.js -------------------------------------------------------------------------------- /imgui-js-1.53/example/imgui_impl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/imgui-js-1.53/example/imgui_impl.ts -------------------------------------------------------------------------------- /imgui-js-1.53/example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/imgui-js-1.53/example/index.html -------------------------------------------------------------------------------- /imgui-js-1.53/example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/imgui-js-1.53/example/index.js -------------------------------------------------------------------------------- /imgui-js-1.53/example/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/imgui-js-1.53/example/main.js -------------------------------------------------------------------------------- /imgui-js-1.53/example/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/imgui-js-1.53/example/main.ts -------------------------------------------------------------------------------- /imgui-js-1.53/example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/imgui-js-1.53/example/tsconfig.json -------------------------------------------------------------------------------- /imgui-js-1.53/imconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/imgui-js-1.53/imconfig.js -------------------------------------------------------------------------------- /imgui-js-1.53/imconfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/imgui-js-1.53/imconfig.ts -------------------------------------------------------------------------------- /imgui-js-1.53/imgui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/imgui-js-1.53/imgui.js -------------------------------------------------------------------------------- /imgui-js-1.53/imgui.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/imgui-js-1.53/imgui.ts -------------------------------------------------------------------------------- /imgui-js-1.53/imgui_demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/imgui-js-1.53/imgui_demo.js -------------------------------------------------------------------------------- /imgui-js-1.53/imgui_demo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/imgui-js-1.53/imgui_demo.ts -------------------------------------------------------------------------------- /imgui-js-1.53/imgui_memory_editor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/imgui-js-1.53/imgui_memory_editor.js -------------------------------------------------------------------------------- /imgui-js-1.53/imgui_memory_editor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/imgui-js-1.53/imgui_memory_editor.ts -------------------------------------------------------------------------------- /imgui-js-1.53/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/imgui-js-1.53/package.json -------------------------------------------------------------------------------- /imgui-js-1.53/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/imgui-js-1.53/tsconfig.json -------------------------------------------------------------------------------- /juster/CGView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/CGView.h -------------------------------------------------------------------------------- /juster/CGView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/CGView.m -------------------------------------------------------------------------------- /juster/KittyMemory/KittyMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/KittyMemory/KittyMemory.cpp -------------------------------------------------------------------------------- /juster/KittyMemory/KittyMemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/KittyMemory/KittyMemory.hpp -------------------------------------------------------------------------------- /juster/KittyMemory/KittyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/KittyMemory/KittyUtils.cpp -------------------------------------------------------------------------------- /juster/KittyMemory/KittyUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/KittyMemory/KittyUtils.hpp -------------------------------------------------------------------------------- /juster/KittyMemory/MemoryBackup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/KittyMemory/MemoryBackup.cpp -------------------------------------------------------------------------------- /juster/KittyMemory/MemoryBackup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/KittyMemory/MemoryBackup.hpp -------------------------------------------------------------------------------- /juster/KittyMemory/MemoryPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/KittyMemory/MemoryPatch.cpp -------------------------------------------------------------------------------- /juster/KittyMemory/MemoryPatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/KittyMemory/MemoryPatch.hpp -------------------------------------------------------------------------------- /juster/KittyMemory/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/KittyMemory/Read Me.txt -------------------------------------------------------------------------------- /juster/KittyMemory/writeData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/KittyMemory/writeData.cpp -------------------------------------------------------------------------------- /juster/KittyMemory/writeData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/KittyMemory/writeData.hpp -------------------------------------------------------------------------------- /juster/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/Macros.h -------------------------------------------------------------------------------- /juster/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/Makefile -------------------------------------------------------------------------------- /juster/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/Menu.h -------------------------------------------------------------------------------- /juster/Menu.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/Menu.mm -------------------------------------------------------------------------------- /juster/NIC/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/NIC/control -------------------------------------------------------------------------------- /juster/NIC/control.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/NIC/control.pl -------------------------------------------------------------------------------- /juster/Obfuscate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/Obfuscate.h -------------------------------------------------------------------------------- /juster/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/README.md -------------------------------------------------------------------------------- /juster/SCLAlertView/SCLAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/SCLAlertView/SCLAlertView.h -------------------------------------------------------------------------------- /juster/SCLAlertView/SCLAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/SCLAlertView/SCLAlertView.m -------------------------------------------------------------------------------- /juster/SCLAlertView/SCLAlertViewResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/SCLAlertView/SCLAlertViewResponder.h -------------------------------------------------------------------------------- /juster/SCLAlertView/SCLAlertViewResponder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/SCLAlertView/SCLAlertViewResponder.m -------------------------------------------------------------------------------- /juster/SCLAlertView/SCLAlertViewStyleKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/SCLAlertView/SCLAlertViewStyleKit.h -------------------------------------------------------------------------------- /juster/SCLAlertView/SCLAlertViewStyleKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/SCLAlertView/SCLAlertViewStyleKit.m -------------------------------------------------------------------------------- /juster/SCLAlertView/SCLButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/SCLAlertView/SCLButton.h -------------------------------------------------------------------------------- /juster/SCLAlertView/SCLButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/SCLAlertView/SCLButton.m -------------------------------------------------------------------------------- /juster/SCLAlertView/SCLMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/SCLAlertView/SCLMacros.h -------------------------------------------------------------------------------- /juster/SCLAlertView/SCLSwitchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/SCLAlertView/SCLSwitchView.h -------------------------------------------------------------------------------- /juster/SCLAlertView/SCLSwitchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/SCLAlertView/SCLSwitchView.m -------------------------------------------------------------------------------- /juster/SCLAlertView/SCLTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/SCLAlertView/SCLTextView.h -------------------------------------------------------------------------------- /juster/SCLAlertView/SCLTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/SCLAlertView/SCLTextView.m -------------------------------------------------------------------------------- /juster/SCLAlertView/SCLTimerDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/SCLAlertView/SCLTimerDisplay.h -------------------------------------------------------------------------------- /juster/SCLAlertView/SCLTimerDisplay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/SCLAlertView/SCLTimerDisplay.m -------------------------------------------------------------------------------- /juster/SCLAlertView/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/SCLAlertView/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /juster/SCLAlertView/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/SCLAlertView/UIImage+ImageEffects.m -------------------------------------------------------------------------------- /juster/SexMenu.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/SexMenu.xm -------------------------------------------------------------------------------- /juster/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/Tweak.xm -------------------------------------------------------------------------------- /juster/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/Vector3.h -------------------------------------------------------------------------------- /juster/Vector3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/Vector3.hpp -------------------------------------------------------------------------------- /juster/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/control -------------------------------------------------------------------------------- /juster/free.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/free.plist -------------------------------------------------------------------------------- /juster/packages/melon_0.19.1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/packages/melon_0.19.1_iphoneos-arm.deb -------------------------------------------------------------------------------- /juster/versionCheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/juster/versionCheck.sh -------------------------------------------------------------------------------- /leonsoftr (2)/leon/KittyMemory/KittyMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/KittyMemory/KittyMemory.cpp -------------------------------------------------------------------------------- /leonsoftr (2)/leon/KittyMemory/KittyMemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/KittyMemory/KittyMemory.hpp -------------------------------------------------------------------------------- /leonsoftr (2)/leon/KittyMemory/KittyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/KittyMemory/KittyUtils.cpp -------------------------------------------------------------------------------- /leonsoftr (2)/leon/KittyMemory/KittyUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/KittyMemory/KittyUtils.hpp -------------------------------------------------------------------------------- /leonsoftr (2)/leon/KittyMemory/MemoryBackup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/KittyMemory/MemoryBackup.cpp -------------------------------------------------------------------------------- /leonsoftr (2)/leon/KittyMemory/MemoryBackup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/KittyMemory/MemoryBackup.hpp -------------------------------------------------------------------------------- /leonsoftr (2)/leon/KittyMemory/MemoryPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/KittyMemory/MemoryPatch.cpp -------------------------------------------------------------------------------- /leonsoftr (2)/leon/KittyMemory/MemoryPatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/KittyMemory/MemoryPatch.hpp -------------------------------------------------------------------------------- /leonsoftr (2)/leon/KittyMemory/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/KittyMemory/Read Me.txt -------------------------------------------------------------------------------- /leonsoftr (2)/leon/KittyMemory/writeData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/KittyMemory/writeData.cpp -------------------------------------------------------------------------------- /leonsoftr (2)/leon/KittyMemory/writeData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/KittyMemory/writeData.hpp -------------------------------------------------------------------------------- /leonsoftr (2)/leon/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/Macros.h -------------------------------------------------------------------------------- /leonsoftr (2)/leon/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/Makefile -------------------------------------------------------------------------------- /leonsoftr (2)/leon/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/Menu.h -------------------------------------------------------------------------------- /leonsoftr (2)/leon/Menu.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/Menu.mm -------------------------------------------------------------------------------- /leonsoftr (2)/leon/Obfuscate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/Obfuscate.h -------------------------------------------------------------------------------- /leonsoftr (2)/leon/SCLAlertView/SCLAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/SCLAlertView/SCLAlertView.h -------------------------------------------------------------------------------- /leonsoftr (2)/leon/SCLAlertView/SCLAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/SCLAlertView/SCLAlertView.m -------------------------------------------------------------------------------- /leonsoftr (2)/leon/SCLAlertView/SCLAlertViewResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/SCLAlertView/SCLAlertViewResponder.h -------------------------------------------------------------------------------- /leonsoftr (2)/leon/SCLAlertView/SCLAlertViewResponder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/SCLAlertView/SCLAlertViewResponder.m -------------------------------------------------------------------------------- /leonsoftr (2)/leon/SCLAlertView/SCLAlertViewStyleKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/SCLAlertView/SCLAlertViewStyleKit.h -------------------------------------------------------------------------------- /leonsoftr (2)/leon/SCLAlertView/SCLAlertViewStyleKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/SCLAlertView/SCLAlertViewStyleKit.m -------------------------------------------------------------------------------- /leonsoftr (2)/leon/SCLAlertView/SCLButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/SCLAlertView/SCLButton.h -------------------------------------------------------------------------------- /leonsoftr (2)/leon/SCLAlertView/SCLButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/SCLAlertView/SCLButton.m -------------------------------------------------------------------------------- /leonsoftr (2)/leon/SCLAlertView/SCLMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/SCLAlertView/SCLMacros.h -------------------------------------------------------------------------------- /leonsoftr (2)/leon/SCLAlertView/SCLSwitchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/SCLAlertView/SCLSwitchView.h -------------------------------------------------------------------------------- /leonsoftr (2)/leon/SCLAlertView/SCLSwitchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/SCLAlertView/SCLSwitchView.m -------------------------------------------------------------------------------- /leonsoftr (2)/leon/SCLAlertView/SCLTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/SCLAlertView/SCLTextView.h -------------------------------------------------------------------------------- /leonsoftr (2)/leon/SCLAlertView/SCLTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/SCLAlertView/SCLTextView.m -------------------------------------------------------------------------------- /leonsoftr (2)/leon/SCLAlertView/SCLTimerDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/SCLAlertView/SCLTimerDisplay.h -------------------------------------------------------------------------------- /leonsoftr (2)/leon/SCLAlertView/SCLTimerDisplay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/SCLAlertView/SCLTimerDisplay.m -------------------------------------------------------------------------------- /leonsoftr (2)/leon/SCLAlertView/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/SCLAlertView/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /leonsoftr (2)/leon/SCLAlertView/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/SCLAlertView/UIImage+ImageEffects.m -------------------------------------------------------------------------------- /leonsoftr (2)/leon/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/Tweak.xm -------------------------------------------------------------------------------- /leonsoftr (2)/leon/Unity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/Unity.h -------------------------------------------------------------------------------- /leonsoftr (2)/leon/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/Vector3.h -------------------------------------------------------------------------------- /leonsoftr (2)/leon/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/control -------------------------------------------------------------------------------- /leonsoftr (2)/leon/packages/jayce_0.1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/packages/jayce_0.1_iphoneos-arm.deb -------------------------------------------------------------------------------- /leonsoftr (2)/leon/versionCheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/versionCheck.sh -------------------------------------------------------------------------------- /leonsoftr (2)/leon/vip.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr (2)/leon/vip.plist -------------------------------------------------------------------------------- /leonsoftr/KittyMemory/KittyMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/KittyMemory/KittyMemory.cpp -------------------------------------------------------------------------------- /leonsoftr/KittyMemory/KittyMemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/KittyMemory/KittyMemory.hpp -------------------------------------------------------------------------------- /leonsoftr/KittyMemory/KittyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/KittyMemory/KittyUtils.cpp -------------------------------------------------------------------------------- /leonsoftr/KittyMemory/KittyUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/KittyMemory/KittyUtils.hpp -------------------------------------------------------------------------------- /leonsoftr/KittyMemory/MemoryBackup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/KittyMemory/MemoryBackup.cpp -------------------------------------------------------------------------------- /leonsoftr/KittyMemory/MemoryBackup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/KittyMemory/MemoryBackup.hpp -------------------------------------------------------------------------------- /leonsoftr/KittyMemory/MemoryPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/KittyMemory/MemoryPatch.cpp -------------------------------------------------------------------------------- /leonsoftr/KittyMemory/MemoryPatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/KittyMemory/MemoryPatch.hpp -------------------------------------------------------------------------------- /leonsoftr/KittyMemory/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/KittyMemory/Read Me.txt -------------------------------------------------------------------------------- /leonsoftr/KittyMemory/writeData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/KittyMemory/writeData.cpp -------------------------------------------------------------------------------- /leonsoftr/KittyMemory/writeData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/KittyMemory/writeData.hpp -------------------------------------------------------------------------------- /leonsoftr/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/Macros.h -------------------------------------------------------------------------------- /leonsoftr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/Makefile -------------------------------------------------------------------------------- /leonsoftr/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/Menu.h -------------------------------------------------------------------------------- /leonsoftr/Menu.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/Menu.mm -------------------------------------------------------------------------------- /leonsoftr/Obfuscate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/Obfuscate.h -------------------------------------------------------------------------------- /leonsoftr/SCLAlertView/SCLAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/SCLAlertView/SCLAlertView.h -------------------------------------------------------------------------------- /leonsoftr/SCLAlertView/SCLAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/SCLAlertView/SCLAlertView.m -------------------------------------------------------------------------------- /leonsoftr/SCLAlertView/SCLAlertViewResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/SCLAlertView/SCLAlertViewResponder.h -------------------------------------------------------------------------------- /leonsoftr/SCLAlertView/SCLAlertViewResponder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/SCLAlertView/SCLAlertViewResponder.m -------------------------------------------------------------------------------- /leonsoftr/SCLAlertView/SCLAlertViewStyleKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/SCLAlertView/SCLAlertViewStyleKit.h -------------------------------------------------------------------------------- /leonsoftr/SCLAlertView/SCLAlertViewStyleKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/SCLAlertView/SCLAlertViewStyleKit.m -------------------------------------------------------------------------------- /leonsoftr/SCLAlertView/SCLButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/SCLAlertView/SCLButton.h -------------------------------------------------------------------------------- /leonsoftr/SCLAlertView/SCLButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/SCLAlertView/SCLButton.m -------------------------------------------------------------------------------- /leonsoftr/SCLAlertView/SCLMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/SCLAlertView/SCLMacros.h -------------------------------------------------------------------------------- /leonsoftr/SCLAlertView/SCLSwitchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/SCLAlertView/SCLSwitchView.h -------------------------------------------------------------------------------- /leonsoftr/SCLAlertView/SCLSwitchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/SCLAlertView/SCLSwitchView.m -------------------------------------------------------------------------------- /leonsoftr/SCLAlertView/SCLTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/SCLAlertView/SCLTextView.h -------------------------------------------------------------------------------- /leonsoftr/SCLAlertView/SCLTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/SCLAlertView/SCLTextView.m -------------------------------------------------------------------------------- /leonsoftr/SCLAlertView/SCLTimerDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/SCLAlertView/SCLTimerDisplay.h -------------------------------------------------------------------------------- /leonsoftr/SCLAlertView/SCLTimerDisplay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/SCLAlertView/SCLTimerDisplay.m -------------------------------------------------------------------------------- /leonsoftr/SCLAlertView/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/SCLAlertView/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /leonsoftr/SCLAlertView/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/SCLAlertView/UIImage+ImageEffects.m -------------------------------------------------------------------------------- /leonsoftr/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/Tweak.xm -------------------------------------------------------------------------------- /leonsoftr/Unity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/Unity.h -------------------------------------------------------------------------------- /leonsoftr/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/Vector3.h -------------------------------------------------------------------------------- /leonsoftr/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/control -------------------------------------------------------------------------------- /leonsoftr/packages/jayce_0.1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/packages/jayce_0.1_iphoneos-arm.deb -------------------------------------------------------------------------------- /leonsoftr/versionCheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/versionCheck.sh -------------------------------------------------------------------------------- /leonsoftr/vip.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/leonsoftr/vip.plist -------------------------------------------------------------------------------- /mod.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/mod.7z -------------------------------------------------------------------------------- /r16Logo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/r16Logo.h -------------------------------------------------------------------------------- /remake.7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake.7z -------------------------------------------------------------------------------- /remake/KittyMemory/KittyMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/KittyMemory/KittyMemory.cpp -------------------------------------------------------------------------------- /remake/KittyMemory/KittyMemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/KittyMemory/KittyMemory.hpp -------------------------------------------------------------------------------- /remake/KittyMemory/KittyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/KittyMemory/KittyUtils.cpp -------------------------------------------------------------------------------- /remake/KittyMemory/KittyUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/KittyMemory/KittyUtils.hpp -------------------------------------------------------------------------------- /remake/KittyMemory/MemoryBackup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/KittyMemory/MemoryBackup.cpp -------------------------------------------------------------------------------- /remake/KittyMemory/MemoryBackup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/KittyMemory/MemoryBackup.hpp -------------------------------------------------------------------------------- /remake/KittyMemory/MemoryPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/KittyMemory/MemoryPatch.cpp -------------------------------------------------------------------------------- /remake/KittyMemory/MemoryPatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/KittyMemory/MemoryPatch.hpp -------------------------------------------------------------------------------- /remake/KittyMemory/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/KittyMemory/Read Me.txt -------------------------------------------------------------------------------- /remake/KittyMemory/writeData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/KittyMemory/writeData.cpp -------------------------------------------------------------------------------- /remake/KittyMemory/writeData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/KittyMemory/writeData.hpp -------------------------------------------------------------------------------- /remake/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/Macros.h -------------------------------------------------------------------------------- /remake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/Makefile -------------------------------------------------------------------------------- /remake/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/Menu.h -------------------------------------------------------------------------------- /remake/Menu.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/Menu.mm -------------------------------------------------------------------------------- /remake/Obfuscate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/Obfuscate.h -------------------------------------------------------------------------------- /remake/SCLAlertView/SCLAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/SCLAlertView/SCLAlertView.h -------------------------------------------------------------------------------- /remake/SCLAlertView/SCLAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/SCLAlertView/SCLAlertView.m -------------------------------------------------------------------------------- /remake/SCLAlertView/SCLAlertViewResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/SCLAlertView/SCLAlertViewResponder.h -------------------------------------------------------------------------------- /remake/SCLAlertView/SCLAlertViewResponder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/SCLAlertView/SCLAlertViewResponder.m -------------------------------------------------------------------------------- /remake/SCLAlertView/SCLAlertViewStyleKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/SCLAlertView/SCLAlertViewStyleKit.h -------------------------------------------------------------------------------- /remake/SCLAlertView/SCLAlertViewStyleKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/SCLAlertView/SCLAlertViewStyleKit.m -------------------------------------------------------------------------------- /remake/SCLAlertView/SCLButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/SCLAlertView/SCLButton.h -------------------------------------------------------------------------------- /remake/SCLAlertView/SCLButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/SCLAlertView/SCLButton.m -------------------------------------------------------------------------------- /remake/SCLAlertView/SCLMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/SCLAlertView/SCLMacros.h -------------------------------------------------------------------------------- /remake/SCLAlertView/SCLSwitchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/SCLAlertView/SCLSwitchView.h -------------------------------------------------------------------------------- /remake/SCLAlertView/SCLSwitchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/SCLAlertView/SCLSwitchView.m -------------------------------------------------------------------------------- /remake/SCLAlertView/SCLTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/SCLAlertView/SCLTextView.h -------------------------------------------------------------------------------- /remake/SCLAlertView/SCLTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/SCLAlertView/SCLTextView.m -------------------------------------------------------------------------------- /remake/SCLAlertView/SCLTimerDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/SCLAlertView/SCLTimerDisplay.h -------------------------------------------------------------------------------- /remake/SCLAlertView/SCLTimerDisplay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/SCLAlertView/SCLTimerDisplay.m -------------------------------------------------------------------------------- /remake/SCLAlertView/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/SCLAlertView/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /remake/SCLAlertView/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/SCLAlertView/UIImage+ImageEffects.m -------------------------------------------------------------------------------- /remake/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/Tweak.xm -------------------------------------------------------------------------------- /remake/Unity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/Unity.h -------------------------------------------------------------------------------- /remake/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/Vector3.h -------------------------------------------------------------------------------- /remake/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/control -------------------------------------------------------------------------------- /remake/versionCheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/versionCheck.sh -------------------------------------------------------------------------------- /remake/vip.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake/vip.plist -------------------------------------------------------------------------------- /remake1/KittyMemory/KittyMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/KittyMemory/KittyMemory.cpp -------------------------------------------------------------------------------- /remake1/KittyMemory/KittyMemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/KittyMemory/KittyMemory.hpp -------------------------------------------------------------------------------- /remake1/KittyMemory/KittyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/KittyMemory/KittyUtils.cpp -------------------------------------------------------------------------------- /remake1/KittyMemory/KittyUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/KittyMemory/KittyUtils.hpp -------------------------------------------------------------------------------- /remake1/KittyMemory/MemoryBackup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/KittyMemory/MemoryBackup.cpp -------------------------------------------------------------------------------- /remake1/KittyMemory/MemoryBackup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/KittyMemory/MemoryBackup.hpp -------------------------------------------------------------------------------- /remake1/KittyMemory/MemoryPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/KittyMemory/MemoryPatch.cpp -------------------------------------------------------------------------------- /remake1/KittyMemory/MemoryPatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/KittyMemory/MemoryPatch.hpp -------------------------------------------------------------------------------- /remake1/KittyMemory/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/KittyMemory/Read Me.txt -------------------------------------------------------------------------------- /remake1/KittyMemory/writeData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/KittyMemory/writeData.cpp -------------------------------------------------------------------------------- /remake1/KittyMemory/writeData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/KittyMemory/writeData.hpp -------------------------------------------------------------------------------- /remake1/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/Macros.h -------------------------------------------------------------------------------- /remake1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/Makefile -------------------------------------------------------------------------------- /remake1/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/Menu.h -------------------------------------------------------------------------------- /remake1/Menu.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/Menu.mm -------------------------------------------------------------------------------- /remake1/Obfuscate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/Obfuscate.h -------------------------------------------------------------------------------- /remake1/SCLAlertView/SCLAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/SCLAlertView/SCLAlertView.h -------------------------------------------------------------------------------- /remake1/SCLAlertView/SCLAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/SCLAlertView/SCLAlertView.m -------------------------------------------------------------------------------- /remake1/SCLAlertView/SCLAlertViewResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/SCLAlertView/SCLAlertViewResponder.h -------------------------------------------------------------------------------- /remake1/SCLAlertView/SCLAlertViewResponder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/SCLAlertView/SCLAlertViewResponder.m -------------------------------------------------------------------------------- /remake1/SCLAlertView/SCLAlertViewStyleKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/SCLAlertView/SCLAlertViewStyleKit.h -------------------------------------------------------------------------------- /remake1/SCLAlertView/SCLAlertViewStyleKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/SCLAlertView/SCLAlertViewStyleKit.m -------------------------------------------------------------------------------- /remake1/SCLAlertView/SCLButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/SCLAlertView/SCLButton.h -------------------------------------------------------------------------------- /remake1/SCLAlertView/SCLButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/SCLAlertView/SCLButton.m -------------------------------------------------------------------------------- /remake1/SCLAlertView/SCLMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/SCLAlertView/SCLMacros.h -------------------------------------------------------------------------------- /remake1/SCLAlertView/SCLSwitchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/SCLAlertView/SCLSwitchView.h -------------------------------------------------------------------------------- /remake1/SCLAlertView/SCLSwitchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/SCLAlertView/SCLSwitchView.m -------------------------------------------------------------------------------- /remake1/SCLAlertView/SCLTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/SCLAlertView/SCLTextView.h -------------------------------------------------------------------------------- /remake1/SCLAlertView/SCLTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/SCLAlertView/SCLTextView.m -------------------------------------------------------------------------------- /remake1/SCLAlertView/SCLTimerDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/SCLAlertView/SCLTimerDisplay.h -------------------------------------------------------------------------------- /remake1/SCLAlertView/SCLTimerDisplay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/SCLAlertView/SCLTimerDisplay.m -------------------------------------------------------------------------------- /remake1/SCLAlertView/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/SCLAlertView/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /remake1/SCLAlertView/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/SCLAlertView/UIImage+ImageEffects.m -------------------------------------------------------------------------------- /remake1/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/Tweak.xm -------------------------------------------------------------------------------- /remake1/Unity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/Unity.h -------------------------------------------------------------------------------- /remake1/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/Vector3.h -------------------------------------------------------------------------------- /remake1/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/control -------------------------------------------------------------------------------- /remake1/versionCheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/versionCheck.sh -------------------------------------------------------------------------------- /remake1/vip.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/remake1/vip.plist -------------------------------------------------------------------------------- /rez.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rez.zip -------------------------------------------------------------------------------- /rezolver.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver.zip -------------------------------------------------------------------------------- /rezolver2/KittyMemory/KittyMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/KittyMemory/KittyMemory.cpp -------------------------------------------------------------------------------- /rezolver2/KittyMemory/KittyMemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/KittyMemory/KittyMemory.hpp -------------------------------------------------------------------------------- /rezolver2/KittyMemory/KittyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/KittyMemory/KittyUtils.cpp -------------------------------------------------------------------------------- /rezolver2/KittyMemory/KittyUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/KittyMemory/KittyUtils.hpp -------------------------------------------------------------------------------- /rezolver2/KittyMemory/MemoryBackup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/KittyMemory/MemoryBackup.cpp -------------------------------------------------------------------------------- /rezolver2/KittyMemory/MemoryBackup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/KittyMemory/MemoryBackup.hpp -------------------------------------------------------------------------------- /rezolver2/KittyMemory/MemoryPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/KittyMemory/MemoryPatch.cpp -------------------------------------------------------------------------------- /rezolver2/KittyMemory/MemoryPatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/KittyMemory/MemoryPatch.hpp -------------------------------------------------------------------------------- /rezolver2/KittyMemory/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/KittyMemory/Read Me.txt -------------------------------------------------------------------------------- /rezolver2/KittyMemory/writeData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/KittyMemory/writeData.cpp -------------------------------------------------------------------------------- /rezolver2/KittyMemory/writeData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/KittyMemory/writeData.hpp -------------------------------------------------------------------------------- /rezolver2/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/Macros.h -------------------------------------------------------------------------------- /rezolver2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/Makefile -------------------------------------------------------------------------------- /rezolver2/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/Menu.h -------------------------------------------------------------------------------- /rezolver2/Menu.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/Menu.mm -------------------------------------------------------------------------------- /rezolver2/Obfuscate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/Obfuscate.h -------------------------------------------------------------------------------- /rezolver2/Rezolver.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/Rezolver.plist -------------------------------------------------------------------------------- /rezolver2/SCLAlertView/SCLAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/SCLAlertView/SCLAlertView.h -------------------------------------------------------------------------------- /rezolver2/SCLAlertView/SCLAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/SCLAlertView/SCLAlertView.m -------------------------------------------------------------------------------- /rezolver2/SCLAlertView/SCLAlertViewResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/SCLAlertView/SCLAlertViewResponder.h -------------------------------------------------------------------------------- /rezolver2/SCLAlertView/SCLAlertViewResponder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/SCLAlertView/SCLAlertViewResponder.m -------------------------------------------------------------------------------- /rezolver2/SCLAlertView/SCLAlertViewStyleKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/SCLAlertView/SCLAlertViewStyleKit.h -------------------------------------------------------------------------------- /rezolver2/SCLAlertView/SCLAlertViewStyleKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/SCLAlertView/SCLAlertViewStyleKit.m -------------------------------------------------------------------------------- /rezolver2/SCLAlertView/SCLButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/SCLAlertView/SCLButton.h -------------------------------------------------------------------------------- /rezolver2/SCLAlertView/SCLButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/SCLAlertView/SCLButton.m -------------------------------------------------------------------------------- /rezolver2/SCLAlertView/SCLMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/SCLAlertView/SCLMacros.h -------------------------------------------------------------------------------- /rezolver2/SCLAlertView/SCLSwitchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/SCLAlertView/SCLSwitchView.h -------------------------------------------------------------------------------- /rezolver2/SCLAlertView/SCLSwitchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/SCLAlertView/SCLSwitchView.m -------------------------------------------------------------------------------- /rezolver2/SCLAlertView/SCLTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/SCLAlertView/SCLTextView.h -------------------------------------------------------------------------------- /rezolver2/SCLAlertView/SCLTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/SCLAlertView/SCLTextView.m -------------------------------------------------------------------------------- /rezolver2/SCLAlertView/SCLTimerDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/SCLAlertView/SCLTimerDisplay.h -------------------------------------------------------------------------------- /rezolver2/SCLAlertView/SCLTimerDisplay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/SCLAlertView/SCLTimerDisplay.m -------------------------------------------------------------------------------- /rezolver2/SCLAlertView/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/SCLAlertView/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /rezolver2/SCLAlertView/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/SCLAlertView/UIImage+ImageEffects.m -------------------------------------------------------------------------------- /rezolver2/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/Tweak.xm -------------------------------------------------------------------------------- /rezolver2/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/control -------------------------------------------------------------------------------- /rezolver2/packages/com.free.rezolver_0.18.5_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/packages/com.free.rezolver_0.18.5_iphoneos-arm.deb -------------------------------------------------------------------------------- /rezolver2/versionCheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/rezolver2/versionCheck.sh -------------------------------------------------------------------------------- /sample.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sample.xm -------------------------------------------------------------------------------- /sex/HelperFiles/DeObfMostText.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/HelperFiles/DeObfMostText.sh -------------------------------------------------------------------------------- /sex/HelperFiles/DecryptOffsets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/HelperFiles/DecryptOffsets.sh -------------------------------------------------------------------------------- /sex/HelperFiles/EncryptOffsets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/HelperFiles/EncryptOffsets.sh -------------------------------------------------------------------------------- /sex/HelperFiles/ObfMostText.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/HelperFiles/ObfMostText.sh -------------------------------------------------------------------------------- /sex/HelperFiles/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/HelperFiles/utils.h -------------------------------------------------------------------------------- /sex/KittyMemory/KittyMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/KittyMemory/KittyMemory.cpp -------------------------------------------------------------------------------- /sex/KittyMemory/KittyMemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/KittyMemory/KittyMemory.hpp -------------------------------------------------------------------------------- /sex/KittyMemory/KittyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/KittyMemory/KittyUtils.cpp -------------------------------------------------------------------------------- /sex/KittyMemory/KittyUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/KittyMemory/KittyUtils.hpp -------------------------------------------------------------------------------- /sex/KittyMemory/MemoryBackup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/KittyMemory/MemoryBackup.cpp -------------------------------------------------------------------------------- /sex/KittyMemory/MemoryBackup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/KittyMemory/MemoryBackup.hpp -------------------------------------------------------------------------------- /sex/KittyMemory/MemoryPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/KittyMemory/MemoryPatch.cpp -------------------------------------------------------------------------------- /sex/KittyMemory/MemoryPatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/KittyMemory/MemoryPatch.hpp -------------------------------------------------------------------------------- /sex/KittyMemory/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/KittyMemory/Read Me.txt -------------------------------------------------------------------------------- /sex/KittyMemory/writeData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/KittyMemory/writeData.cpp -------------------------------------------------------------------------------- /sex/KittyMemory/writeData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/KittyMemory/writeData.hpp -------------------------------------------------------------------------------- /sex/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/Macros.h -------------------------------------------------------------------------------- /sex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/Makefile -------------------------------------------------------------------------------- /sex/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/Menu.h -------------------------------------------------------------------------------- /sex/Menu.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/Menu.mm -------------------------------------------------------------------------------- /sex/Obfuscate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/Obfuscate.h -------------------------------------------------------------------------------- /sex/SCLAlertView/SCLAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/SCLAlertView/SCLAlertView.h -------------------------------------------------------------------------------- /sex/SCLAlertView/SCLAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/SCLAlertView/SCLAlertView.m -------------------------------------------------------------------------------- /sex/SCLAlertView/SCLAlertViewResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/SCLAlertView/SCLAlertViewResponder.h -------------------------------------------------------------------------------- /sex/SCLAlertView/SCLAlertViewResponder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/SCLAlertView/SCLAlertViewResponder.m -------------------------------------------------------------------------------- /sex/SCLAlertView/SCLAlertViewStyleKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/SCLAlertView/SCLAlertViewStyleKit.h -------------------------------------------------------------------------------- /sex/SCLAlertView/SCLAlertViewStyleKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/SCLAlertView/SCLAlertViewStyleKit.m -------------------------------------------------------------------------------- /sex/SCLAlertView/SCLButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/SCLAlertView/SCLButton.h -------------------------------------------------------------------------------- /sex/SCLAlertView/SCLButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/SCLAlertView/SCLButton.m -------------------------------------------------------------------------------- /sex/SCLAlertView/SCLMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/SCLAlertView/SCLMacros.h -------------------------------------------------------------------------------- /sex/SCLAlertView/SCLSwitchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/SCLAlertView/SCLSwitchView.h -------------------------------------------------------------------------------- /sex/SCLAlertView/SCLSwitchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/SCLAlertView/SCLSwitchView.m -------------------------------------------------------------------------------- /sex/SCLAlertView/SCLTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/SCLAlertView/SCLTextView.h -------------------------------------------------------------------------------- /sex/SCLAlertView/SCLTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/SCLAlertView/SCLTextView.m -------------------------------------------------------------------------------- /sex/SCLAlertView/SCLTimerDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/SCLAlertView/SCLTimerDisplay.h -------------------------------------------------------------------------------- /sex/SCLAlertView/SCLTimerDisplay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/SCLAlertView/SCLTimerDisplay.m -------------------------------------------------------------------------------- /sex/SCLAlertView/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/SCLAlertView/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /sex/SCLAlertView/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/SCLAlertView/UIImage+ImageEffects.m -------------------------------------------------------------------------------- /sex/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/Tweak.xm -------------------------------------------------------------------------------- /sex/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/Vector3.h -------------------------------------------------------------------------------- /sex/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/control -------------------------------------------------------------------------------- /sex/hudware.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/hudware.plist -------------------------------------------------------------------------------- /sex/packages/hudware_0.19.0_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/packages/hudware_0.19.0_iphoneos-arm.deb -------------------------------------------------------------------------------- /sex/versionCheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/sex/versionCheck.sh -------------------------------------------------------------------------------- /skinchanger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/skinchanger.h -------------------------------------------------------------------------------- /source (3).zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source (3).zip -------------------------------------------------------------------------------- /source/HelperFiles/DeObfMostText.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/HelperFiles/DeObfMostText.sh -------------------------------------------------------------------------------- /source/HelperFiles/DecryptOffsets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/HelperFiles/DecryptOffsets.sh -------------------------------------------------------------------------------- /source/HelperFiles/EncryptOffsets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/HelperFiles/EncryptOffsets.sh -------------------------------------------------------------------------------- /source/HelperFiles/ObfMostText.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/HelperFiles/ObfMostText.sh -------------------------------------------------------------------------------- /source/HelperFiles/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/HelperFiles/utils.h -------------------------------------------------------------------------------- /source/KittyMemory/KittyMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/KittyMemory/KittyMemory.cpp -------------------------------------------------------------------------------- /source/KittyMemory/KittyMemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/KittyMemory/KittyMemory.hpp -------------------------------------------------------------------------------- /source/KittyMemory/KittyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/KittyMemory/KittyUtils.cpp -------------------------------------------------------------------------------- /source/KittyMemory/KittyUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/KittyMemory/KittyUtils.hpp -------------------------------------------------------------------------------- /source/KittyMemory/MemoryBackup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/KittyMemory/MemoryBackup.cpp -------------------------------------------------------------------------------- /source/KittyMemory/MemoryBackup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/KittyMemory/MemoryBackup.hpp -------------------------------------------------------------------------------- /source/KittyMemory/MemoryPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/KittyMemory/MemoryPatch.cpp -------------------------------------------------------------------------------- /source/KittyMemory/MemoryPatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/KittyMemory/MemoryPatch.hpp -------------------------------------------------------------------------------- /source/KittyMemory/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/KittyMemory/Read Me.txt -------------------------------------------------------------------------------- /source/KittyMemory/writeData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/KittyMemory/writeData.cpp -------------------------------------------------------------------------------- /source/KittyMemory/writeData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/KittyMemory/writeData.hpp -------------------------------------------------------------------------------- /source/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/Macros.h -------------------------------------------------------------------------------- /source/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/Makefile -------------------------------------------------------------------------------- /source/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/Menu.h -------------------------------------------------------------------------------- /source/Menu.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/Menu.mm -------------------------------------------------------------------------------- /source/Obfuscate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/Obfuscate.h -------------------------------------------------------------------------------- /source/SCLAlertView/SCLAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/SCLAlertView/SCLAlertView.h -------------------------------------------------------------------------------- /source/SCLAlertView/SCLAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/SCLAlertView/SCLAlertView.m -------------------------------------------------------------------------------- /source/SCLAlertView/SCLAlertViewResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/SCLAlertView/SCLAlertViewResponder.h -------------------------------------------------------------------------------- /source/SCLAlertView/SCLAlertViewResponder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/SCLAlertView/SCLAlertViewResponder.m -------------------------------------------------------------------------------- /source/SCLAlertView/SCLAlertViewStyleKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/SCLAlertView/SCLAlertViewStyleKit.h -------------------------------------------------------------------------------- /source/SCLAlertView/SCLAlertViewStyleKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/SCLAlertView/SCLAlertViewStyleKit.m -------------------------------------------------------------------------------- /source/SCLAlertView/SCLButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/SCLAlertView/SCLButton.h -------------------------------------------------------------------------------- /source/SCLAlertView/SCLButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/SCLAlertView/SCLButton.m -------------------------------------------------------------------------------- /source/SCLAlertView/SCLMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/SCLAlertView/SCLMacros.h -------------------------------------------------------------------------------- /source/SCLAlertView/SCLSwitchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/SCLAlertView/SCLSwitchView.h -------------------------------------------------------------------------------- /source/SCLAlertView/SCLSwitchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/SCLAlertView/SCLSwitchView.m -------------------------------------------------------------------------------- /source/SCLAlertView/SCLTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/SCLAlertView/SCLTextView.h -------------------------------------------------------------------------------- /source/SCLAlertView/SCLTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/SCLAlertView/SCLTextView.m -------------------------------------------------------------------------------- /source/SCLAlertView/SCLTimerDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/SCLAlertView/SCLTimerDisplay.h -------------------------------------------------------------------------------- /source/SCLAlertView/SCLTimerDisplay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/SCLAlertView/SCLTimerDisplay.m -------------------------------------------------------------------------------- /source/SCLAlertView/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/SCLAlertView/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /source/SCLAlertView/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/SCLAlertView/UIImage+ImageEffects.m -------------------------------------------------------------------------------- /source/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/Tweak.xm -------------------------------------------------------------------------------- /source/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/Vector3.h -------------------------------------------------------------------------------- /source/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/control -------------------------------------------------------------------------------- /source/hudware.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/hudware.plist -------------------------------------------------------------------------------- /source/versionCheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source/versionCheck.sh -------------------------------------------------------------------------------- /source2/KittyMemory/KittyMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/KittyMemory/KittyMemory.cpp -------------------------------------------------------------------------------- /source2/KittyMemory/KittyMemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/KittyMemory/KittyMemory.hpp -------------------------------------------------------------------------------- /source2/KittyMemory/KittyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/KittyMemory/KittyUtils.cpp -------------------------------------------------------------------------------- /source2/KittyMemory/KittyUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/KittyMemory/KittyUtils.hpp -------------------------------------------------------------------------------- /source2/KittyMemory/MemoryBackup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/KittyMemory/MemoryBackup.cpp -------------------------------------------------------------------------------- /source2/KittyMemory/MemoryBackup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/KittyMemory/MemoryBackup.hpp -------------------------------------------------------------------------------- /source2/KittyMemory/MemoryPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/KittyMemory/MemoryPatch.cpp -------------------------------------------------------------------------------- /source2/KittyMemory/MemoryPatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/KittyMemory/MemoryPatch.hpp -------------------------------------------------------------------------------- /source2/KittyMemory/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/KittyMemory/Read Me.txt -------------------------------------------------------------------------------- /source2/KittyMemory/writeData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/KittyMemory/writeData.cpp -------------------------------------------------------------------------------- /source2/KittyMemory/writeData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/KittyMemory/writeData.hpp -------------------------------------------------------------------------------- /source2/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/Macros.h -------------------------------------------------------------------------------- /source2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/Makefile -------------------------------------------------------------------------------- /source2/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/Menu.h -------------------------------------------------------------------------------- /source2/Menu.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/Menu.mm -------------------------------------------------------------------------------- /source2/Obfuscate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/Obfuscate.h -------------------------------------------------------------------------------- /source2/SCLAlertView/SCLAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/SCLAlertView/SCLAlertView.h -------------------------------------------------------------------------------- /source2/SCLAlertView/SCLAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/SCLAlertView/SCLAlertView.m -------------------------------------------------------------------------------- /source2/SCLAlertView/SCLAlertViewResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/SCLAlertView/SCLAlertViewResponder.h -------------------------------------------------------------------------------- /source2/SCLAlertView/SCLAlertViewResponder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/SCLAlertView/SCLAlertViewResponder.m -------------------------------------------------------------------------------- /source2/SCLAlertView/SCLAlertViewStyleKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/SCLAlertView/SCLAlertViewStyleKit.h -------------------------------------------------------------------------------- /source2/SCLAlertView/SCLAlertViewStyleKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/SCLAlertView/SCLAlertViewStyleKit.m -------------------------------------------------------------------------------- /source2/SCLAlertView/SCLButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/SCLAlertView/SCLButton.h -------------------------------------------------------------------------------- /source2/SCLAlertView/SCLButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/SCLAlertView/SCLButton.m -------------------------------------------------------------------------------- /source2/SCLAlertView/SCLMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/SCLAlertView/SCLMacros.h -------------------------------------------------------------------------------- /source2/SCLAlertView/SCLSwitchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/SCLAlertView/SCLSwitchView.h -------------------------------------------------------------------------------- /source2/SCLAlertView/SCLSwitchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/SCLAlertView/SCLSwitchView.m -------------------------------------------------------------------------------- /source2/SCLAlertView/SCLTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/SCLAlertView/SCLTextView.h -------------------------------------------------------------------------------- /source2/SCLAlertView/SCLTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/SCLAlertView/SCLTextView.m -------------------------------------------------------------------------------- /source2/SCLAlertView/SCLTimerDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/SCLAlertView/SCLTimerDisplay.h -------------------------------------------------------------------------------- /source2/SCLAlertView/SCLTimerDisplay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/SCLAlertView/SCLTimerDisplay.m -------------------------------------------------------------------------------- /source2/SCLAlertView/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/SCLAlertView/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /source2/SCLAlertView/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/SCLAlertView/UIImage+ImageEffects.m -------------------------------------------------------------------------------- /source2/Source.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/Source.xm -------------------------------------------------------------------------------- /source2/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/control -------------------------------------------------------------------------------- /source2/layout/Library/MobileSubstrate/DynamicLibraries/HD.bundle/d1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/layout/Library/MobileSubstrate/DynamicLibraries/HD.bundle/d1.png -------------------------------------------------------------------------------- /source2/layout/Library/MobileSubstrate/DynamicLibraries/HD.bundle/d2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/layout/Library/MobileSubstrate/DynamicLibraries/HD.bundle/d2.png -------------------------------------------------------------------------------- /source2/layout/Library/MobileSubstrate/DynamicLibraries/HD.bundle/d3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/layout/Library/MobileSubstrate/DynamicLibraries/HD.bundle/d3.png -------------------------------------------------------------------------------- /source2/layout/Library/MobileSubstrate/DynamicLibraries/HD.bundle/d4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/layout/Library/MobileSubstrate/DynamicLibraries/HD.bundle/d4.png -------------------------------------------------------------------------------- /source2/source.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/source.plist -------------------------------------------------------------------------------- /source2/versionCheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source2/versionCheck.sh -------------------------------------------------------------------------------- /source3/KittyMemory/KittyMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/KittyMemory/KittyMemory.cpp -------------------------------------------------------------------------------- /source3/KittyMemory/KittyMemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/KittyMemory/KittyMemory.hpp -------------------------------------------------------------------------------- /source3/KittyMemory/KittyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/KittyMemory/KittyUtils.cpp -------------------------------------------------------------------------------- /source3/KittyMemory/KittyUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/KittyMemory/KittyUtils.hpp -------------------------------------------------------------------------------- /source3/KittyMemory/MemoryBackup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/KittyMemory/MemoryBackup.cpp -------------------------------------------------------------------------------- /source3/KittyMemory/MemoryBackup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/KittyMemory/MemoryBackup.hpp -------------------------------------------------------------------------------- /source3/KittyMemory/MemoryPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/KittyMemory/MemoryPatch.cpp -------------------------------------------------------------------------------- /source3/KittyMemory/MemoryPatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/KittyMemory/MemoryPatch.hpp -------------------------------------------------------------------------------- /source3/KittyMemory/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/KittyMemory/Read Me.txt -------------------------------------------------------------------------------- /source3/KittyMemory/writeData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/KittyMemory/writeData.cpp -------------------------------------------------------------------------------- /source3/KittyMemory/writeData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/KittyMemory/writeData.hpp -------------------------------------------------------------------------------- /source3/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/Macros.h -------------------------------------------------------------------------------- /source3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/Makefile -------------------------------------------------------------------------------- /source3/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/Menu.h -------------------------------------------------------------------------------- /source3/Menu.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/Menu.mm -------------------------------------------------------------------------------- /source3/Obfuscate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/Obfuscate.h -------------------------------------------------------------------------------- /source3/SCLAlertView/SCLAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/SCLAlertView/SCLAlertView.h -------------------------------------------------------------------------------- /source3/SCLAlertView/SCLAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/SCLAlertView/SCLAlertView.m -------------------------------------------------------------------------------- /source3/SCLAlertView/SCLAlertViewResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/SCLAlertView/SCLAlertViewResponder.h -------------------------------------------------------------------------------- /source3/SCLAlertView/SCLAlertViewResponder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/SCLAlertView/SCLAlertViewResponder.m -------------------------------------------------------------------------------- /source3/SCLAlertView/SCLAlertViewStyleKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/SCLAlertView/SCLAlertViewStyleKit.h -------------------------------------------------------------------------------- /source3/SCLAlertView/SCLAlertViewStyleKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/SCLAlertView/SCLAlertViewStyleKit.m -------------------------------------------------------------------------------- /source3/SCLAlertView/SCLButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/SCLAlertView/SCLButton.h -------------------------------------------------------------------------------- /source3/SCLAlertView/SCLButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/SCLAlertView/SCLButton.m -------------------------------------------------------------------------------- /source3/SCLAlertView/SCLMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/SCLAlertView/SCLMacros.h -------------------------------------------------------------------------------- /source3/SCLAlertView/SCLSwitchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/SCLAlertView/SCLSwitchView.h -------------------------------------------------------------------------------- /source3/SCLAlertView/SCLSwitchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/SCLAlertView/SCLSwitchView.m -------------------------------------------------------------------------------- /source3/SCLAlertView/SCLTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/SCLAlertView/SCLTextView.h -------------------------------------------------------------------------------- /source3/SCLAlertView/SCLTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/SCLAlertView/SCLTextView.m -------------------------------------------------------------------------------- /source3/SCLAlertView/SCLTimerDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/SCLAlertView/SCLTimerDisplay.h -------------------------------------------------------------------------------- /source3/SCLAlertView/SCLTimerDisplay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/SCLAlertView/SCLTimerDisplay.m -------------------------------------------------------------------------------- /source3/SCLAlertView/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/SCLAlertView/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /source3/SCLAlertView/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/SCLAlertView/UIImage+ImageEffects.m -------------------------------------------------------------------------------- /source3/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/Tweak.xm -------------------------------------------------------------------------------- /source3/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/control -------------------------------------------------------------------------------- /source3/packages/source_1.0_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/packages/source_1.0_iphoneos-arm.deb -------------------------------------------------------------------------------- /source3/source.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/source.plist -------------------------------------------------------------------------------- /source3/versionCheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/source3/versionCheck.sh -------------------------------------------------------------------------------- /template (5).7z: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template (5).7z -------------------------------------------------------------------------------- /template/KittyMemory/KittyMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/KittyMemory/KittyMemory.cpp -------------------------------------------------------------------------------- /template/KittyMemory/KittyMemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/KittyMemory/KittyMemory.hpp -------------------------------------------------------------------------------- /template/KittyMemory/KittyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/KittyMemory/KittyUtils.cpp -------------------------------------------------------------------------------- /template/KittyMemory/KittyUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/KittyMemory/KittyUtils.hpp -------------------------------------------------------------------------------- /template/KittyMemory/MemoryBackup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/KittyMemory/MemoryBackup.cpp -------------------------------------------------------------------------------- /template/KittyMemory/MemoryBackup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/KittyMemory/MemoryBackup.hpp -------------------------------------------------------------------------------- /template/KittyMemory/MemoryPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/KittyMemory/MemoryPatch.cpp -------------------------------------------------------------------------------- /template/KittyMemory/MemoryPatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/KittyMemory/MemoryPatch.hpp -------------------------------------------------------------------------------- /template/KittyMemory/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/KittyMemory/Read Me.txt -------------------------------------------------------------------------------- /template/KittyMemory/writeData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/KittyMemory/writeData.cpp -------------------------------------------------------------------------------- /template/KittyMemory/writeData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/KittyMemory/writeData.hpp -------------------------------------------------------------------------------- /template/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/Macros.h -------------------------------------------------------------------------------- /template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/Makefile -------------------------------------------------------------------------------- /template/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/Menu.h -------------------------------------------------------------------------------- /template/Menu.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/Menu.mm -------------------------------------------------------------------------------- /template/NIC/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/NIC/control -------------------------------------------------------------------------------- /template/NIC/control.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/NIC/control.pl -------------------------------------------------------------------------------- /template/Obfuscate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/Obfuscate.h -------------------------------------------------------------------------------- /template/SCLAlertView/SCLAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/SCLAlertView/SCLAlertView.h -------------------------------------------------------------------------------- /template/SCLAlertView/SCLAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/SCLAlertView/SCLAlertView.m -------------------------------------------------------------------------------- /template/SCLAlertView/SCLAlertViewResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/SCLAlertView/SCLAlertViewResponder.h -------------------------------------------------------------------------------- /template/SCLAlertView/SCLAlertViewResponder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/SCLAlertView/SCLAlertViewResponder.m -------------------------------------------------------------------------------- /template/SCLAlertView/SCLAlertViewStyleKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/SCLAlertView/SCLAlertViewStyleKit.h -------------------------------------------------------------------------------- /template/SCLAlertView/SCLAlertViewStyleKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/SCLAlertView/SCLAlertViewStyleKit.m -------------------------------------------------------------------------------- /template/SCLAlertView/SCLButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/SCLAlertView/SCLButton.h -------------------------------------------------------------------------------- /template/SCLAlertView/SCLButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/SCLAlertView/SCLButton.m -------------------------------------------------------------------------------- /template/SCLAlertView/SCLMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/SCLAlertView/SCLMacros.h -------------------------------------------------------------------------------- /template/SCLAlertView/SCLSwitchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/SCLAlertView/SCLSwitchView.h -------------------------------------------------------------------------------- /template/SCLAlertView/SCLSwitchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/SCLAlertView/SCLSwitchView.m -------------------------------------------------------------------------------- /template/SCLAlertView/SCLTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/SCLAlertView/SCLTextView.h -------------------------------------------------------------------------------- /template/SCLAlertView/SCLTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/SCLAlertView/SCLTextView.m -------------------------------------------------------------------------------- /template/SCLAlertView/SCLTimerDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/SCLAlertView/SCLTimerDisplay.h -------------------------------------------------------------------------------- /template/SCLAlertView/SCLTimerDisplay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/SCLAlertView/SCLTimerDisplay.m -------------------------------------------------------------------------------- /template/SCLAlertView/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/SCLAlertView/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /template/SCLAlertView/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/SCLAlertView/UIImage+ImageEffects.m -------------------------------------------------------------------------------- /template/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/Tweak.xm -------------------------------------------------------------------------------- /template/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/control -------------------------------------------------------------------------------- /template/standoffhack.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/standoffhack.plist -------------------------------------------------------------------------------- /template/versionCheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template/versionCheck.sh -------------------------------------------------------------------------------- /template1/KittyMemory/KittyMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/KittyMemory/KittyMemory.cpp -------------------------------------------------------------------------------- /template1/KittyMemory/KittyMemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/KittyMemory/KittyMemory.hpp -------------------------------------------------------------------------------- /template1/KittyMemory/KittyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/KittyMemory/KittyUtils.cpp -------------------------------------------------------------------------------- /template1/KittyMemory/KittyUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/KittyMemory/KittyUtils.hpp -------------------------------------------------------------------------------- /template1/KittyMemory/MemoryBackup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/KittyMemory/MemoryBackup.cpp -------------------------------------------------------------------------------- /template1/KittyMemory/MemoryBackup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/KittyMemory/MemoryBackup.hpp -------------------------------------------------------------------------------- /template1/KittyMemory/MemoryPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/KittyMemory/MemoryPatch.cpp -------------------------------------------------------------------------------- /template1/KittyMemory/MemoryPatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/KittyMemory/MemoryPatch.hpp -------------------------------------------------------------------------------- /template1/KittyMemory/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/KittyMemory/Read Me.txt -------------------------------------------------------------------------------- /template1/KittyMemory/writeData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/KittyMemory/writeData.cpp -------------------------------------------------------------------------------- /template1/KittyMemory/writeData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/KittyMemory/writeData.hpp -------------------------------------------------------------------------------- /template1/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/Macros.h -------------------------------------------------------------------------------- /template1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/Makefile -------------------------------------------------------------------------------- /template1/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/Menu.h -------------------------------------------------------------------------------- /template1/Menu.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/Menu.mm -------------------------------------------------------------------------------- /template1/SCLAlertView/SCLAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/SCLAlertView/SCLAlertView.h -------------------------------------------------------------------------------- /template1/SCLAlertView/SCLAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/SCLAlertView/SCLAlertView.m -------------------------------------------------------------------------------- /template1/SCLAlertView/SCLAlertViewResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/SCLAlertView/SCLAlertViewResponder.h -------------------------------------------------------------------------------- /template1/SCLAlertView/SCLAlertViewResponder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/SCLAlertView/SCLAlertViewResponder.m -------------------------------------------------------------------------------- /template1/SCLAlertView/SCLAlertViewStyleKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/SCLAlertView/SCLAlertViewStyleKit.h -------------------------------------------------------------------------------- /template1/SCLAlertView/SCLAlertViewStyleKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/SCLAlertView/SCLAlertViewStyleKit.m -------------------------------------------------------------------------------- /template1/SCLAlertView/SCLButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/SCLAlertView/SCLButton.h -------------------------------------------------------------------------------- /template1/SCLAlertView/SCLButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/SCLAlertView/SCLButton.m -------------------------------------------------------------------------------- /template1/SCLAlertView/SCLMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/SCLAlertView/SCLMacros.h -------------------------------------------------------------------------------- /template1/SCLAlertView/SCLSwitchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/SCLAlertView/SCLSwitchView.h -------------------------------------------------------------------------------- /template1/SCLAlertView/SCLSwitchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/SCLAlertView/SCLSwitchView.m -------------------------------------------------------------------------------- /template1/SCLAlertView/SCLTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/SCLAlertView/SCLTextView.h -------------------------------------------------------------------------------- /template1/SCLAlertView/SCLTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/SCLAlertView/SCLTextView.m -------------------------------------------------------------------------------- /template1/SCLAlertView/SCLTimerDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/SCLAlertView/SCLTimerDisplay.h -------------------------------------------------------------------------------- /template1/SCLAlertView/SCLTimerDisplay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/SCLAlertView/SCLTimerDisplay.m -------------------------------------------------------------------------------- /template1/SCLAlertView/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/SCLAlertView/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /template1/SCLAlertView/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/SCLAlertView/UIImage+ImageEffects.m -------------------------------------------------------------------------------- /template1/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/Tweak.xm -------------------------------------------------------------------------------- /template1/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/control -------------------------------------------------------------------------------- /template1/sample.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/sample.xm -------------------------------------------------------------------------------- /template1/template.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/template.plist -------------------------------------------------------------------------------- /template1/versionCheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/template1/versionCheck.sh -------------------------------------------------------------------------------- /tixtap/KittyMemory/KittyMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/KittyMemory/KittyMemory.cpp -------------------------------------------------------------------------------- /tixtap/KittyMemory/KittyMemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/KittyMemory/KittyMemory.hpp -------------------------------------------------------------------------------- /tixtap/KittyMemory/KittyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/KittyMemory/KittyUtils.cpp -------------------------------------------------------------------------------- /tixtap/KittyMemory/KittyUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/KittyMemory/KittyUtils.hpp -------------------------------------------------------------------------------- /tixtap/KittyMemory/MemoryBackup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/KittyMemory/MemoryBackup.cpp -------------------------------------------------------------------------------- /tixtap/KittyMemory/MemoryBackup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/KittyMemory/MemoryBackup.hpp -------------------------------------------------------------------------------- /tixtap/KittyMemory/MemoryPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/KittyMemory/MemoryPatch.cpp -------------------------------------------------------------------------------- /tixtap/KittyMemory/MemoryPatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/KittyMemory/MemoryPatch.hpp -------------------------------------------------------------------------------- /tixtap/KittyMemory/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/KittyMemory/Read Me.txt -------------------------------------------------------------------------------- /tixtap/KittyMemory/writeData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/KittyMemory/writeData.cpp -------------------------------------------------------------------------------- /tixtap/KittyMemory/writeData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/KittyMemory/writeData.hpp -------------------------------------------------------------------------------- /tixtap/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/Macros.h -------------------------------------------------------------------------------- /tixtap/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/Makefile -------------------------------------------------------------------------------- /tixtap/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/Menu.h -------------------------------------------------------------------------------- /tixtap/Menu.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/Menu.mm -------------------------------------------------------------------------------- /tixtap/Obfuscate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/Obfuscate.h -------------------------------------------------------------------------------- /tixtap/SCLAlertView/SCLAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/SCLAlertView/SCLAlertView.h -------------------------------------------------------------------------------- /tixtap/SCLAlertView/SCLAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/SCLAlertView/SCLAlertView.m -------------------------------------------------------------------------------- /tixtap/SCLAlertView/SCLAlertViewResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/SCLAlertView/SCLAlertViewResponder.h -------------------------------------------------------------------------------- /tixtap/SCLAlertView/SCLAlertViewResponder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/SCLAlertView/SCLAlertViewResponder.m -------------------------------------------------------------------------------- /tixtap/SCLAlertView/SCLAlertViewStyleKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/SCLAlertView/SCLAlertViewStyleKit.h -------------------------------------------------------------------------------- /tixtap/SCLAlertView/SCLAlertViewStyleKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/SCLAlertView/SCLAlertViewStyleKit.m -------------------------------------------------------------------------------- /tixtap/SCLAlertView/SCLButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/SCLAlertView/SCLButton.h -------------------------------------------------------------------------------- /tixtap/SCLAlertView/SCLButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/SCLAlertView/SCLButton.m -------------------------------------------------------------------------------- /tixtap/SCLAlertView/SCLMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/SCLAlertView/SCLMacros.h -------------------------------------------------------------------------------- /tixtap/SCLAlertView/SCLSwitchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/SCLAlertView/SCLSwitchView.h -------------------------------------------------------------------------------- /tixtap/SCLAlertView/SCLSwitchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/SCLAlertView/SCLSwitchView.m -------------------------------------------------------------------------------- /tixtap/SCLAlertView/SCLTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/SCLAlertView/SCLTextView.h -------------------------------------------------------------------------------- /tixtap/SCLAlertView/SCLTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/SCLAlertView/SCLTextView.m -------------------------------------------------------------------------------- /tixtap/SCLAlertView/SCLTimerDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/SCLAlertView/SCLTimerDisplay.h -------------------------------------------------------------------------------- /tixtap/SCLAlertView/SCLTimerDisplay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/SCLAlertView/SCLTimerDisplay.m -------------------------------------------------------------------------------- /tixtap/SCLAlertView/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/SCLAlertView/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /tixtap/SCLAlertView/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/SCLAlertView/UIImage+ImageEffects.m -------------------------------------------------------------------------------- /tixtap/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/Tweak.xm -------------------------------------------------------------------------------- /tixtap/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/control -------------------------------------------------------------------------------- /tixtap/tixtap.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/tixtap.plist -------------------------------------------------------------------------------- /tixtap/versionCheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/tixtap/versionCheck.sh -------------------------------------------------------------------------------- /watermark.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/watermark.m -------------------------------------------------------------------------------- /zxc/KittyMemory/KittyMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/KittyMemory/KittyMemory.cpp -------------------------------------------------------------------------------- /zxc/KittyMemory/KittyMemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/KittyMemory/KittyMemory.hpp -------------------------------------------------------------------------------- /zxc/KittyMemory/KittyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/KittyMemory/KittyUtils.cpp -------------------------------------------------------------------------------- /zxc/KittyMemory/KittyUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/KittyMemory/KittyUtils.hpp -------------------------------------------------------------------------------- /zxc/KittyMemory/MemoryBackup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/KittyMemory/MemoryBackup.cpp -------------------------------------------------------------------------------- /zxc/KittyMemory/MemoryBackup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/KittyMemory/MemoryBackup.hpp -------------------------------------------------------------------------------- /zxc/KittyMemory/MemoryPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/KittyMemory/MemoryPatch.cpp -------------------------------------------------------------------------------- /zxc/KittyMemory/MemoryPatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/KittyMemory/MemoryPatch.hpp -------------------------------------------------------------------------------- /zxc/KittyMemory/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/KittyMemory/Read Me.txt -------------------------------------------------------------------------------- /zxc/KittyMemory/writeData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/KittyMemory/writeData.cpp -------------------------------------------------------------------------------- /zxc/KittyMemory/writeData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/KittyMemory/writeData.hpp -------------------------------------------------------------------------------- /zxc/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/Macros.h -------------------------------------------------------------------------------- /zxc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/Makefile -------------------------------------------------------------------------------- /zxc/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/Menu.h -------------------------------------------------------------------------------- /zxc/Menu.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/Menu.mm -------------------------------------------------------------------------------- /zxc/Obfuscate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/Obfuscate.h -------------------------------------------------------------------------------- /zxc/SCLAlertView/SCLAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/SCLAlertView/SCLAlertView.h -------------------------------------------------------------------------------- /zxc/SCLAlertView/SCLAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/SCLAlertView/SCLAlertView.m -------------------------------------------------------------------------------- /zxc/SCLAlertView/SCLAlertViewResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/SCLAlertView/SCLAlertViewResponder.h -------------------------------------------------------------------------------- /zxc/SCLAlertView/SCLAlertViewResponder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/SCLAlertView/SCLAlertViewResponder.m -------------------------------------------------------------------------------- /zxc/SCLAlertView/SCLAlertViewStyleKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/SCLAlertView/SCLAlertViewStyleKit.h -------------------------------------------------------------------------------- /zxc/SCLAlertView/SCLAlertViewStyleKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/SCLAlertView/SCLAlertViewStyleKit.m -------------------------------------------------------------------------------- /zxc/SCLAlertView/SCLButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/SCLAlertView/SCLButton.h -------------------------------------------------------------------------------- /zxc/SCLAlertView/SCLButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/SCLAlertView/SCLButton.m -------------------------------------------------------------------------------- /zxc/SCLAlertView/SCLMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/SCLAlertView/SCLMacros.h -------------------------------------------------------------------------------- /zxc/SCLAlertView/SCLSwitchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/SCLAlertView/SCLSwitchView.h -------------------------------------------------------------------------------- /zxc/SCLAlertView/SCLSwitchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/SCLAlertView/SCLSwitchView.m -------------------------------------------------------------------------------- /zxc/SCLAlertView/SCLTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/SCLAlertView/SCLTextView.h -------------------------------------------------------------------------------- /zxc/SCLAlertView/SCLTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/SCLAlertView/SCLTextView.m -------------------------------------------------------------------------------- /zxc/SCLAlertView/SCLTimerDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/SCLAlertView/SCLTimerDisplay.h -------------------------------------------------------------------------------- /zxc/SCLAlertView/SCLTimerDisplay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/SCLAlertView/SCLTimerDisplay.m -------------------------------------------------------------------------------- /zxc/SCLAlertView/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/SCLAlertView/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /zxc/SCLAlertView/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/SCLAlertView/UIImage+ImageEffects.m -------------------------------------------------------------------------------- /zxc/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/Tweak.xm -------------------------------------------------------------------------------- /zxc/Unity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/Unity.h -------------------------------------------------------------------------------- /zxc/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/Vector3.h -------------------------------------------------------------------------------- /zxc/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/control -------------------------------------------------------------------------------- /zxc/packages/jayce_0.1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/packages/jayce_0.1_iphoneos-arm.deb -------------------------------------------------------------------------------- /zxc/versionCheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/versionCheck.sh -------------------------------------------------------------------------------- /zxc/vip.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc/vip.plist -------------------------------------------------------------------------------- /zxc1/KittyMemory/KittyMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/KittyMemory/KittyMemory.cpp -------------------------------------------------------------------------------- /zxc1/KittyMemory/KittyMemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/KittyMemory/KittyMemory.hpp -------------------------------------------------------------------------------- /zxc1/KittyMemory/KittyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/KittyMemory/KittyUtils.cpp -------------------------------------------------------------------------------- /zxc1/KittyMemory/KittyUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/KittyMemory/KittyUtils.hpp -------------------------------------------------------------------------------- /zxc1/KittyMemory/MemoryBackup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/KittyMemory/MemoryBackup.cpp -------------------------------------------------------------------------------- /zxc1/KittyMemory/MemoryBackup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/KittyMemory/MemoryBackup.hpp -------------------------------------------------------------------------------- /zxc1/KittyMemory/MemoryPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/KittyMemory/MemoryPatch.cpp -------------------------------------------------------------------------------- /zxc1/KittyMemory/MemoryPatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/KittyMemory/MemoryPatch.hpp -------------------------------------------------------------------------------- /zxc1/KittyMemory/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/KittyMemory/Read Me.txt -------------------------------------------------------------------------------- /zxc1/KittyMemory/writeData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/KittyMemory/writeData.cpp -------------------------------------------------------------------------------- /zxc1/KittyMemory/writeData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/KittyMemory/writeData.hpp -------------------------------------------------------------------------------- /zxc1/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/Macros.h -------------------------------------------------------------------------------- /zxc1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/Makefile -------------------------------------------------------------------------------- /zxc1/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/Menu.h -------------------------------------------------------------------------------- /zxc1/Menu.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/Menu.mm -------------------------------------------------------------------------------- /zxc1/Obfuscate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/Obfuscate.h -------------------------------------------------------------------------------- /zxc1/SCLAlertView/SCLAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/SCLAlertView/SCLAlertView.h -------------------------------------------------------------------------------- /zxc1/SCLAlertView/SCLAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/SCLAlertView/SCLAlertView.m -------------------------------------------------------------------------------- /zxc1/SCLAlertView/SCLAlertViewResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/SCLAlertView/SCLAlertViewResponder.h -------------------------------------------------------------------------------- /zxc1/SCLAlertView/SCLAlertViewResponder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/SCLAlertView/SCLAlertViewResponder.m -------------------------------------------------------------------------------- /zxc1/SCLAlertView/SCLAlertViewStyleKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/SCLAlertView/SCLAlertViewStyleKit.h -------------------------------------------------------------------------------- /zxc1/SCLAlertView/SCLAlertViewStyleKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/SCLAlertView/SCLAlertViewStyleKit.m -------------------------------------------------------------------------------- /zxc1/SCLAlertView/SCLButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/SCLAlertView/SCLButton.h -------------------------------------------------------------------------------- /zxc1/SCLAlertView/SCLButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/SCLAlertView/SCLButton.m -------------------------------------------------------------------------------- /zxc1/SCLAlertView/SCLMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/SCLAlertView/SCLMacros.h -------------------------------------------------------------------------------- /zxc1/SCLAlertView/SCLSwitchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/SCLAlertView/SCLSwitchView.h -------------------------------------------------------------------------------- /zxc1/SCLAlertView/SCLSwitchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/SCLAlertView/SCLSwitchView.m -------------------------------------------------------------------------------- /zxc1/SCLAlertView/SCLTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/SCLAlertView/SCLTextView.h -------------------------------------------------------------------------------- /zxc1/SCLAlertView/SCLTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/SCLAlertView/SCLTextView.m -------------------------------------------------------------------------------- /zxc1/SCLAlertView/SCLTimerDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/SCLAlertView/SCLTimerDisplay.h -------------------------------------------------------------------------------- /zxc1/SCLAlertView/SCLTimerDisplay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/SCLAlertView/SCLTimerDisplay.m -------------------------------------------------------------------------------- /zxc1/SCLAlertView/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/SCLAlertView/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /zxc1/SCLAlertView/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/SCLAlertView/UIImage+ImageEffects.m -------------------------------------------------------------------------------- /zxc1/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/Tweak.xm -------------------------------------------------------------------------------- /zxc1/Unity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/Unity.h -------------------------------------------------------------------------------- /zxc1/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/Vector3.h -------------------------------------------------------------------------------- /zxc1/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/control -------------------------------------------------------------------------------- /zxc1/packages/jayce_0.1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/packages/jayce_0.1_iphoneos-arm.deb -------------------------------------------------------------------------------- /zxc1/versionCheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/versionCheck.sh -------------------------------------------------------------------------------- /zxc1/vip.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc1/vip.plist -------------------------------------------------------------------------------- /zxc3/KittyMemory/KittyMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/KittyMemory/KittyMemory.cpp -------------------------------------------------------------------------------- /zxc3/KittyMemory/KittyMemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/KittyMemory/KittyMemory.hpp -------------------------------------------------------------------------------- /zxc3/KittyMemory/KittyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/KittyMemory/KittyUtils.cpp -------------------------------------------------------------------------------- /zxc3/KittyMemory/KittyUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/KittyMemory/KittyUtils.hpp -------------------------------------------------------------------------------- /zxc3/KittyMemory/MemoryBackup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/KittyMemory/MemoryBackup.cpp -------------------------------------------------------------------------------- /zxc3/KittyMemory/MemoryBackup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/KittyMemory/MemoryBackup.hpp -------------------------------------------------------------------------------- /zxc3/KittyMemory/MemoryPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/KittyMemory/MemoryPatch.cpp -------------------------------------------------------------------------------- /zxc3/KittyMemory/MemoryPatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/KittyMemory/MemoryPatch.hpp -------------------------------------------------------------------------------- /zxc3/KittyMemory/Read Me.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/KittyMemory/Read Me.txt -------------------------------------------------------------------------------- /zxc3/KittyMemory/writeData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/KittyMemory/writeData.cpp -------------------------------------------------------------------------------- /zxc3/KittyMemory/writeData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/KittyMemory/writeData.hpp -------------------------------------------------------------------------------- /zxc3/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/Macros.h -------------------------------------------------------------------------------- /zxc3/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/Makefile -------------------------------------------------------------------------------- /zxc3/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/Menu.h -------------------------------------------------------------------------------- /zxc3/Menu.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/Menu.mm -------------------------------------------------------------------------------- /zxc3/Obfuscate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/Obfuscate.h -------------------------------------------------------------------------------- /zxc3/SCLAlertView/SCLAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/SCLAlertView/SCLAlertView.h -------------------------------------------------------------------------------- /zxc3/SCLAlertView/SCLAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/SCLAlertView/SCLAlertView.m -------------------------------------------------------------------------------- /zxc3/SCLAlertView/SCLAlertViewResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/SCLAlertView/SCLAlertViewResponder.h -------------------------------------------------------------------------------- /zxc3/SCLAlertView/SCLAlertViewResponder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/SCLAlertView/SCLAlertViewResponder.m -------------------------------------------------------------------------------- /zxc3/SCLAlertView/SCLAlertViewStyleKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/SCLAlertView/SCLAlertViewStyleKit.h -------------------------------------------------------------------------------- /zxc3/SCLAlertView/SCLAlertViewStyleKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/SCLAlertView/SCLAlertViewStyleKit.m -------------------------------------------------------------------------------- /zxc3/SCLAlertView/SCLButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/SCLAlertView/SCLButton.h -------------------------------------------------------------------------------- /zxc3/SCLAlertView/SCLButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/SCLAlertView/SCLButton.m -------------------------------------------------------------------------------- /zxc3/SCLAlertView/SCLMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/SCLAlertView/SCLMacros.h -------------------------------------------------------------------------------- /zxc3/SCLAlertView/SCLSwitchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/SCLAlertView/SCLSwitchView.h -------------------------------------------------------------------------------- /zxc3/SCLAlertView/SCLSwitchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/SCLAlertView/SCLSwitchView.m -------------------------------------------------------------------------------- /zxc3/SCLAlertView/SCLTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/SCLAlertView/SCLTextView.h -------------------------------------------------------------------------------- /zxc3/SCLAlertView/SCLTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/SCLAlertView/SCLTextView.m -------------------------------------------------------------------------------- /zxc3/SCLAlertView/SCLTimerDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/SCLAlertView/SCLTimerDisplay.h -------------------------------------------------------------------------------- /zxc3/SCLAlertView/SCLTimerDisplay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/SCLAlertView/SCLTimerDisplay.m -------------------------------------------------------------------------------- /zxc3/SCLAlertView/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/SCLAlertView/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /zxc3/SCLAlertView/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/SCLAlertView/UIImage+ImageEffects.m -------------------------------------------------------------------------------- /zxc3/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/Tweak.xm -------------------------------------------------------------------------------- /zxc3/Unity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/Unity.h -------------------------------------------------------------------------------- /zxc3/Vector3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/Vector3.h -------------------------------------------------------------------------------- /zxc3/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/control -------------------------------------------------------------------------------- /zxc3/packages/jayce_0.1_iphoneos-arm.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/packages/jayce_0.1_iphoneos-arm.deb -------------------------------------------------------------------------------- /zxc3/versionCheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/versionCheck.sh -------------------------------------------------------------------------------- /zxc3/vip.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mishavac/template_modmenu_ios/HEAD/zxc3/vip.plist --------------------------------------------------------------------------------