├── .gitignore ├── CheatKit.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ └── xcuserdata │ │ └── rpwnage.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ ├── luca.xcuserdatad │ └── xcschemes │ │ └── xcschememanagement.plist │ └── rpwnage.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── CheatKit ├── CheatKit.h ├── FileTypes │ ├── PlistParser.h │ └── PlistParser.m ├── Info.plist └── Packages │ ├── FileManager.h │ ├── FileManager.m │ ├── PackageManager.h │ └── PackageManager.m ├── Makefile ├── README.md ├── control ├── include ├── libkrw.h └── libkrw_plugin.h └── libs └── libkrw.dylib /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectManticore/CheatKit/HEAD/.gitignore -------------------------------------------------------------------------------- /CheatKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectManticore/CheatKit/HEAD/CheatKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CheatKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectManticore/CheatKit/HEAD/CheatKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CheatKit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectManticore/CheatKit/HEAD/CheatKit.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CheatKit.xcodeproj/project.xcworkspace/xcuserdata/rpwnage.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectManticore/CheatKit/HEAD/CheatKit.xcodeproj/project.xcworkspace/xcuserdata/rpwnage.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CheatKit.xcodeproj/xcuserdata/luca.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectManticore/CheatKit/HEAD/CheatKit.xcodeproj/xcuserdata/luca.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CheatKit.xcodeproj/xcuserdata/rpwnage.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectManticore/CheatKit/HEAD/CheatKit.xcodeproj/xcuserdata/rpwnage.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CheatKit/CheatKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectManticore/CheatKit/HEAD/CheatKit/CheatKit.h -------------------------------------------------------------------------------- /CheatKit/FileTypes/PlistParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectManticore/CheatKit/HEAD/CheatKit/FileTypes/PlistParser.h -------------------------------------------------------------------------------- /CheatKit/FileTypes/PlistParser.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectManticore/CheatKit/HEAD/CheatKit/FileTypes/PlistParser.m -------------------------------------------------------------------------------- /CheatKit/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectManticore/CheatKit/HEAD/CheatKit/Info.plist -------------------------------------------------------------------------------- /CheatKit/Packages/FileManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectManticore/CheatKit/HEAD/CheatKit/Packages/FileManager.h -------------------------------------------------------------------------------- /CheatKit/Packages/FileManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectManticore/CheatKit/HEAD/CheatKit/Packages/FileManager.m -------------------------------------------------------------------------------- /CheatKit/Packages/PackageManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectManticore/CheatKit/HEAD/CheatKit/Packages/PackageManager.h -------------------------------------------------------------------------------- /CheatKit/Packages/PackageManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectManticore/CheatKit/HEAD/CheatKit/Packages/PackageManager.m -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectManticore/CheatKit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectManticore/CheatKit/HEAD/README.md -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectManticore/CheatKit/HEAD/control -------------------------------------------------------------------------------- /include/libkrw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectManticore/CheatKit/HEAD/include/libkrw.h -------------------------------------------------------------------------------- /include/libkrw_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectManticore/CheatKit/HEAD/include/libkrw_plugin.h -------------------------------------------------------------------------------- /libs/libkrw.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProjectManticore/CheatKit/HEAD/libs/libkrw.dylib --------------------------------------------------------------------------------