├── AUTHORS ├── AboutBoxController.h ├── AboutBoxController.m ├── AppController.h ├── AppController.m ├── BetterTableView.h ├── BetterTableView.m ├── COPYING ├── ChazLog.h ├── ChazLog.m ├── ChazUpdate.h ├── ChazUpdate.m ├── CheatData.h ├── CheatData.m ├── CheatDocument.h ├── CheatDocument.m ├── CheatServer.h ├── CheatServer.m ├── CheatURLCommand.h ├── CheatURLCommand.m ├── CheatURLHandler.scriptSuite ├── CheatURLHandler.scriptTerminology ├── Cheater.h ├── Cheater.m ├── CheaterTypes.h ├── CheaterTypes.m ├── Conversions.h ├── Conversions.m ├── DocCheaterDelegate.m ├── DocInterfaceActions.m ├── DumpContext.h ├── DumpContext.m ├── English.lproj ├── AboutBox.nib │ ├── classes.nib │ ├── info.nib │ └── keyedobjects.nib ├── AboutBox~.nib │ ├── classes.nib │ ├── info.nib │ └── keyedobjects.nib ├── CheatDocument.nib │ ├── classes.nib │ ├── disc_session.tiff │ ├── info.nib │ └── keyedobjects.nib ├── CheatDocument~.nib │ ├── classes.nib │ ├── disc_session.tiff │ ├── info.nib │ └── keyedobjects.nib ├── Help.nib │ ├── classes.nib │ ├── info.nib │ └── keyedobjects.nib ├── Help~.nib │ ├── classes.nib │ ├── info.nib │ └── keyedobjects.nib ├── InfoPlist.strings ├── MainMenu.nib │ ├── classes.nib │ ├── info.nib │ └── keyedobjects.nib ├── MainMenu~.nib │ ├── classes.nib │ ├── info.nib │ └── keyedobjects.nib ├── Preferences.nib │ ├── classes.nib │ ├── info.nib │ └── keyedobjects.nib ├── Preferences~.nib │ ├── classes.nib │ ├── info.nib │ └── keyedobjects.nib ├── Record~.nib │ ├── classes.nib │ ├── info.nib │ └── keyedobjects.nib ├── Session~.nib │ ├── classes.nib │ ├── info.nib │ ├── keyedobjects.nib │ └── objects.nib └── locversion.plist ├── FadeView.h ├── FadeView.m ├── General.png ├── GeneralPrefs.h ├── GeneralPrefs.m ├── Help.html ├── HelpController.h ├── HelpController.m ├── Info.plist ├── LocalCheater.h ├── LocalCheater.m ├── Lock.tif ├── MenuExtras.h ├── MenuExtras.m ├── MySocket.h ├── MySocket.m ├── PreferenceController.h ├── PreferenceController.m ├── Process.h ├── Process.m ├── README.md ├── RemoteCheater.h ├── RemoteCheater.m ├── SearchContext.h ├── SearchContext.m ├── SearchData.h ├── SearchData.m ├── Searching.h ├── Searching.m ├── Server.png ├── ServerChild.h ├── ServerChild.m ├── ServerPrefs.h ├── ServerPrefs.m ├── StatusTextField.h ├── StatusTextField.m ├── The Cheat.xcodeproj └── project.pbxproj ├── The_Cheat_Prefix.pch ├── ThreadedTask.h ├── ThreadedTask.m ├── TrackerScroller.h ├── TrackerScroller.m ├── Update.png ├── UpdatePrefs.h ├── UpdatePrefs.m ├── VMRegion.h ├── VMRegion.m ├── Variable.h ├── Variable.m ├── VariableTable.h ├── VariableTable.m ├── cheat_global.h ├── cheat_global.m ├── disc_session.tif ├── icon.icns ├── icondoc.icns ├── main.m └── version.plist /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/AUTHORS -------------------------------------------------------------------------------- /AboutBoxController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/AboutBoxController.h -------------------------------------------------------------------------------- /AboutBoxController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/AboutBoxController.m -------------------------------------------------------------------------------- /AppController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/AppController.h -------------------------------------------------------------------------------- /AppController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/AppController.m -------------------------------------------------------------------------------- /BetterTableView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/BetterTableView.h -------------------------------------------------------------------------------- /BetterTableView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/BetterTableView.m -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/COPYING -------------------------------------------------------------------------------- /ChazLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/ChazLog.h -------------------------------------------------------------------------------- /ChazLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/ChazLog.m -------------------------------------------------------------------------------- /ChazUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/ChazUpdate.h -------------------------------------------------------------------------------- /ChazUpdate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/ChazUpdate.m -------------------------------------------------------------------------------- /CheatData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/CheatData.h -------------------------------------------------------------------------------- /CheatData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/CheatData.m -------------------------------------------------------------------------------- /CheatDocument.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/CheatDocument.h -------------------------------------------------------------------------------- /CheatDocument.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/CheatDocument.m -------------------------------------------------------------------------------- /CheatServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/CheatServer.h -------------------------------------------------------------------------------- /CheatServer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/CheatServer.m -------------------------------------------------------------------------------- /CheatURLCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/CheatURLCommand.h -------------------------------------------------------------------------------- /CheatURLCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/CheatURLCommand.m -------------------------------------------------------------------------------- /CheatURLHandler.scriptSuite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/CheatURLHandler.scriptSuite -------------------------------------------------------------------------------- /CheatURLHandler.scriptTerminology: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/CheatURLHandler.scriptTerminology -------------------------------------------------------------------------------- /Cheater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/Cheater.h -------------------------------------------------------------------------------- /Cheater.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/Cheater.m -------------------------------------------------------------------------------- /CheaterTypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/CheaterTypes.h -------------------------------------------------------------------------------- /CheaterTypes.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/CheaterTypes.m -------------------------------------------------------------------------------- /Conversions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/Conversions.h -------------------------------------------------------------------------------- /Conversions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/Conversions.m -------------------------------------------------------------------------------- /DocCheaterDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/DocCheaterDelegate.m -------------------------------------------------------------------------------- /DocInterfaceActions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/DocInterfaceActions.m -------------------------------------------------------------------------------- /DumpContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/DumpContext.h -------------------------------------------------------------------------------- /DumpContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/DumpContext.m -------------------------------------------------------------------------------- /English.lproj/AboutBox.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/AboutBox.nib/classes.nib -------------------------------------------------------------------------------- /English.lproj/AboutBox.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/AboutBox.nib/info.nib -------------------------------------------------------------------------------- /English.lproj/AboutBox.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/AboutBox.nib/keyedobjects.nib -------------------------------------------------------------------------------- /English.lproj/AboutBox~.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/AboutBox~.nib/classes.nib -------------------------------------------------------------------------------- /English.lproj/AboutBox~.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/AboutBox~.nib/info.nib -------------------------------------------------------------------------------- /English.lproj/AboutBox~.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/AboutBox~.nib/keyedobjects.nib -------------------------------------------------------------------------------- /English.lproj/CheatDocument.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/CheatDocument.nib/classes.nib -------------------------------------------------------------------------------- /English.lproj/CheatDocument.nib/disc_session.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/CheatDocument.nib/disc_session.tiff -------------------------------------------------------------------------------- /English.lproj/CheatDocument.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/CheatDocument.nib/info.nib -------------------------------------------------------------------------------- /English.lproj/CheatDocument.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/CheatDocument.nib/keyedobjects.nib -------------------------------------------------------------------------------- /English.lproj/CheatDocument~.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/CheatDocument~.nib/classes.nib -------------------------------------------------------------------------------- /English.lproj/CheatDocument~.nib/disc_session.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/CheatDocument~.nib/disc_session.tiff -------------------------------------------------------------------------------- /English.lproj/CheatDocument~.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/CheatDocument~.nib/info.nib -------------------------------------------------------------------------------- /English.lproj/CheatDocument~.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/CheatDocument~.nib/keyedobjects.nib -------------------------------------------------------------------------------- /English.lproj/Help.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/Help.nib/classes.nib -------------------------------------------------------------------------------- /English.lproj/Help.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/Help.nib/info.nib -------------------------------------------------------------------------------- /English.lproj/Help.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/Help.nib/keyedobjects.nib -------------------------------------------------------------------------------- /English.lproj/Help~.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/Help~.nib/classes.nib -------------------------------------------------------------------------------- /English.lproj/Help~.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/Help~.nib/info.nib -------------------------------------------------------------------------------- /English.lproj/Help~.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/Help~.nib/keyedobjects.nib -------------------------------------------------------------------------------- /English.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /English.lproj/MainMenu.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/MainMenu.nib/classes.nib -------------------------------------------------------------------------------- /English.lproj/MainMenu.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/MainMenu.nib/info.nib -------------------------------------------------------------------------------- /English.lproj/MainMenu.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/MainMenu.nib/keyedobjects.nib -------------------------------------------------------------------------------- /English.lproj/MainMenu~.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/MainMenu~.nib/classes.nib -------------------------------------------------------------------------------- /English.lproj/MainMenu~.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/MainMenu~.nib/info.nib -------------------------------------------------------------------------------- /English.lproj/MainMenu~.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/MainMenu~.nib/keyedobjects.nib -------------------------------------------------------------------------------- /English.lproj/Preferences.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/Preferences.nib/classes.nib -------------------------------------------------------------------------------- /English.lproj/Preferences.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/Preferences.nib/info.nib -------------------------------------------------------------------------------- /English.lproj/Preferences.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/Preferences.nib/keyedobjects.nib -------------------------------------------------------------------------------- /English.lproj/Preferences~.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/Preferences~.nib/classes.nib -------------------------------------------------------------------------------- /English.lproj/Preferences~.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/Preferences~.nib/info.nib -------------------------------------------------------------------------------- /English.lproj/Preferences~.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/Preferences~.nib/keyedobjects.nib -------------------------------------------------------------------------------- /English.lproj/Record~.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/Record~.nib/classes.nib -------------------------------------------------------------------------------- /English.lproj/Record~.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/Record~.nib/info.nib -------------------------------------------------------------------------------- /English.lproj/Record~.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/Record~.nib/keyedobjects.nib -------------------------------------------------------------------------------- /English.lproj/Session~.nib/classes.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/Session~.nib/classes.nib -------------------------------------------------------------------------------- /English.lproj/Session~.nib/info.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/Session~.nib/info.nib -------------------------------------------------------------------------------- /English.lproj/Session~.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/Session~.nib/keyedobjects.nib -------------------------------------------------------------------------------- /English.lproj/Session~.nib/objects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/Session~.nib/objects.nib -------------------------------------------------------------------------------- /English.lproj/locversion.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/English.lproj/locversion.plist -------------------------------------------------------------------------------- /FadeView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/FadeView.h -------------------------------------------------------------------------------- /FadeView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/FadeView.m -------------------------------------------------------------------------------- /General.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/General.png -------------------------------------------------------------------------------- /GeneralPrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/GeneralPrefs.h -------------------------------------------------------------------------------- /GeneralPrefs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/GeneralPrefs.m -------------------------------------------------------------------------------- /Help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/Help.html -------------------------------------------------------------------------------- /HelpController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/HelpController.h -------------------------------------------------------------------------------- /HelpController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/HelpController.m -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/Info.plist -------------------------------------------------------------------------------- /LocalCheater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/LocalCheater.h -------------------------------------------------------------------------------- /LocalCheater.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/LocalCheater.m -------------------------------------------------------------------------------- /Lock.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/Lock.tif -------------------------------------------------------------------------------- /MenuExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/MenuExtras.h -------------------------------------------------------------------------------- /MenuExtras.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/MenuExtras.m -------------------------------------------------------------------------------- /MySocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/MySocket.h -------------------------------------------------------------------------------- /MySocket.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/MySocket.m -------------------------------------------------------------------------------- /PreferenceController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/PreferenceController.h -------------------------------------------------------------------------------- /PreferenceController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/PreferenceController.m -------------------------------------------------------------------------------- /Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/Process.h -------------------------------------------------------------------------------- /Process.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/Process.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/README.md -------------------------------------------------------------------------------- /RemoteCheater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/RemoteCheater.h -------------------------------------------------------------------------------- /RemoteCheater.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/RemoteCheater.m -------------------------------------------------------------------------------- /SearchContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/SearchContext.h -------------------------------------------------------------------------------- /SearchContext.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/SearchContext.m -------------------------------------------------------------------------------- /SearchData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/SearchData.h -------------------------------------------------------------------------------- /SearchData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/SearchData.m -------------------------------------------------------------------------------- /Searching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/Searching.h -------------------------------------------------------------------------------- /Searching.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/Searching.m -------------------------------------------------------------------------------- /Server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/Server.png -------------------------------------------------------------------------------- /ServerChild.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/ServerChild.h -------------------------------------------------------------------------------- /ServerChild.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/ServerChild.m -------------------------------------------------------------------------------- /ServerPrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/ServerPrefs.h -------------------------------------------------------------------------------- /ServerPrefs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/ServerPrefs.m -------------------------------------------------------------------------------- /StatusTextField.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/StatusTextField.h -------------------------------------------------------------------------------- /StatusTextField.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/StatusTextField.m -------------------------------------------------------------------------------- /The Cheat.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/The Cheat.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /The_Cheat_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/The_Cheat_Prefix.pch -------------------------------------------------------------------------------- /ThreadedTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/ThreadedTask.h -------------------------------------------------------------------------------- /ThreadedTask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/ThreadedTask.m -------------------------------------------------------------------------------- /TrackerScroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/TrackerScroller.h -------------------------------------------------------------------------------- /TrackerScroller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/TrackerScroller.m -------------------------------------------------------------------------------- /Update.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/Update.png -------------------------------------------------------------------------------- /UpdatePrefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/UpdatePrefs.h -------------------------------------------------------------------------------- /UpdatePrefs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/UpdatePrefs.m -------------------------------------------------------------------------------- /VMRegion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/VMRegion.h -------------------------------------------------------------------------------- /VMRegion.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/VMRegion.m -------------------------------------------------------------------------------- /Variable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/Variable.h -------------------------------------------------------------------------------- /Variable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/Variable.m -------------------------------------------------------------------------------- /VariableTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/VariableTable.h -------------------------------------------------------------------------------- /VariableTable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/VariableTable.m -------------------------------------------------------------------------------- /cheat_global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/cheat_global.h -------------------------------------------------------------------------------- /cheat_global.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/cheat_global.m -------------------------------------------------------------------------------- /disc_session.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/disc_session.tif -------------------------------------------------------------------------------- /icon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/icon.icns -------------------------------------------------------------------------------- /icondoc.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/icondoc.icns -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/main.m -------------------------------------------------------------------------------- /version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chazmcgarvey/thecheat/HEAD/version.plist --------------------------------------------------------------------------------