├── .gitattributes ├── .github └── workflows │ └── packager.yml ├── .gitignore ├── README.md └── template ├── @@PROJECTNAME@@.plist ├── KittyMemory ├── KittyArm64.cpp ├── KittyArm64.hpp ├── KittyMemory.cpp ├── KittyMemory.hpp ├── KittyScanner.cpp ├── KittyScanner.hpp ├── KittyUtils.cpp ├── KittyUtils.hpp ├── MemoryBackup.cpp ├── MemoryBackup.hpp ├── MemoryPatch.cpp ├── MemoryPatch.hpp ├── 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 └── versionCheck.sh /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/packager.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/.github/workflows/packager.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/README.md -------------------------------------------------------------------------------- /template/@@PROJECTNAME@@.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/@@PROJECTNAME@@.plist -------------------------------------------------------------------------------- /template/KittyMemory/KittyArm64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/KittyMemory/KittyArm64.cpp -------------------------------------------------------------------------------- /template/KittyMemory/KittyArm64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/KittyMemory/KittyArm64.hpp -------------------------------------------------------------------------------- /template/KittyMemory/KittyMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/KittyMemory/KittyMemory.cpp -------------------------------------------------------------------------------- /template/KittyMemory/KittyMemory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/KittyMemory/KittyMemory.hpp -------------------------------------------------------------------------------- /template/KittyMemory/KittyScanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/KittyMemory/KittyScanner.cpp -------------------------------------------------------------------------------- /template/KittyMemory/KittyScanner.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/KittyMemory/KittyScanner.hpp -------------------------------------------------------------------------------- /template/KittyMemory/KittyUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/KittyMemory/KittyUtils.cpp -------------------------------------------------------------------------------- /template/KittyMemory/KittyUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/KittyMemory/KittyUtils.hpp -------------------------------------------------------------------------------- /template/KittyMemory/MemoryBackup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/KittyMemory/MemoryBackup.cpp -------------------------------------------------------------------------------- /template/KittyMemory/MemoryBackup.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/KittyMemory/MemoryBackup.hpp -------------------------------------------------------------------------------- /template/KittyMemory/MemoryPatch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/KittyMemory/MemoryPatch.cpp -------------------------------------------------------------------------------- /template/KittyMemory/MemoryPatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/KittyMemory/MemoryPatch.hpp -------------------------------------------------------------------------------- /template/KittyMemory/writeData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/KittyMemory/writeData.cpp -------------------------------------------------------------------------------- /template/KittyMemory/writeData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/KittyMemory/writeData.hpp -------------------------------------------------------------------------------- /template/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/Macros.h -------------------------------------------------------------------------------- /template/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/Makefile -------------------------------------------------------------------------------- /template/Menu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/Menu.h -------------------------------------------------------------------------------- /template/Menu.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/Menu.mm -------------------------------------------------------------------------------- /template/NIC/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/NIC/control -------------------------------------------------------------------------------- /template/NIC/control.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/NIC/control.pl -------------------------------------------------------------------------------- /template/Obfuscate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/Obfuscate.h -------------------------------------------------------------------------------- /template/SCLAlertView/SCLAlertView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/SCLAlertView/SCLAlertView.h -------------------------------------------------------------------------------- /template/SCLAlertView/SCLAlertView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/SCLAlertView/SCLAlertView.m -------------------------------------------------------------------------------- /template/SCLAlertView/SCLAlertViewResponder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/SCLAlertView/SCLAlertViewResponder.h -------------------------------------------------------------------------------- /template/SCLAlertView/SCLAlertViewResponder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/SCLAlertView/SCLAlertViewResponder.m -------------------------------------------------------------------------------- /template/SCLAlertView/SCLAlertViewStyleKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/SCLAlertView/SCLAlertViewStyleKit.h -------------------------------------------------------------------------------- /template/SCLAlertView/SCLAlertViewStyleKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/SCLAlertView/SCLAlertViewStyleKit.m -------------------------------------------------------------------------------- /template/SCLAlertView/SCLButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/SCLAlertView/SCLButton.h -------------------------------------------------------------------------------- /template/SCLAlertView/SCLButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/SCLAlertView/SCLButton.m -------------------------------------------------------------------------------- /template/SCLAlertView/SCLMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/SCLAlertView/SCLMacros.h -------------------------------------------------------------------------------- /template/SCLAlertView/SCLSwitchView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/SCLAlertView/SCLSwitchView.h -------------------------------------------------------------------------------- /template/SCLAlertView/SCLSwitchView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/SCLAlertView/SCLSwitchView.m -------------------------------------------------------------------------------- /template/SCLAlertView/SCLTextView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/SCLAlertView/SCLTextView.h -------------------------------------------------------------------------------- /template/SCLAlertView/SCLTextView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/SCLAlertView/SCLTextView.m -------------------------------------------------------------------------------- /template/SCLAlertView/SCLTimerDisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/SCLAlertView/SCLTimerDisplay.h -------------------------------------------------------------------------------- /template/SCLAlertView/SCLTimerDisplay.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/SCLAlertView/SCLTimerDisplay.m -------------------------------------------------------------------------------- /template/SCLAlertView/UIImage+ImageEffects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/SCLAlertView/UIImage+ImageEffects.h -------------------------------------------------------------------------------- /template/SCLAlertView/UIImage+ImageEffects.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/SCLAlertView/UIImage+ImageEffects.m -------------------------------------------------------------------------------- /template/Tweak.xm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/Tweak.xm -------------------------------------------------------------------------------- /template/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/control -------------------------------------------------------------------------------- /template/versionCheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joeyjurjens/iOS-Mod-Menu-Template-for-Theos/HEAD/template/versionCheck.sh --------------------------------------------------------------------------------