├── .gitignore ├── .gitmodules ├── Acknowledgements.rtf ├── DeltaLite ├── ConfigFiles │ ├── Base │ │ └── BaseBuildSettings.xcconfig │ ├── BuildSettings.xcconfig │ └── Overrides │ │ └── BookOverridingBuildSettings.xcconfig ├── LICENSE │ └── LICENSE.txt ├── LiveViewTestApp │ ├── AppDelegate.swift │ ├── Base.lproj │ │ └── LiveViewTestAppLaunchScreen.storyboard │ ├── Info.plist │ ├── Main.storyboard │ ├── ViewController.swift │ └── version.plist ├── PlaygroundBook.xcodeproj │ ├── .xcodesamplecode.plist │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── PlaygroundBook │ ├── Assets │ │ └── Assets.xcassets │ │ │ ├── CheatCodes.imageset │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── FastForward.imageset │ │ │ ├── Contents.json │ │ │ ├── FastForward.png │ │ │ └── FastForward@3x.png │ │ │ ├── LoadSaveState.imageset │ │ │ ├── Contents.json │ │ │ ├── LoadSaveState.png │ │ │ └── LoadSaveState@3x.png │ │ │ ├── Pause.imageset │ │ │ ├── Contents.json │ │ │ ├── Pause.png │ │ │ └── Pause@3x.png │ │ │ ├── SaveSaveState.imageset │ │ │ ├── Contents.json │ │ │ ├── SaveSaveState.png │ │ │ └── SaveSaveState@3x.png │ │ │ └── SustainButtons.imageset │ │ │ ├── Contents.json │ │ │ ├── sustain@1x.png │ │ │ └── sustain@3x.png │ ├── Chapters │ │ └── Chapter1.playgroundchapter │ │ │ ├── Manifest.plist │ │ │ └── Pages │ │ │ └── PlaygroundPage.playgroundpage │ │ │ ├── Contents.swift │ │ │ ├── LiveView.swift │ │ │ └── Manifest.plist │ ├── Manifest.plist │ ├── PrivateResources │ │ ├── Assets │ │ │ ├── CheatCodes@2x.png │ │ │ ├── FastForward@2x.png │ │ │ ├── LoadSaveState@2x.png │ │ │ ├── Pause@2x.png │ │ │ ├── SaveSaveState@2x.png │ │ │ └── SustainButtons@2x.png │ │ ├── Base.lproj │ │ │ └── LiveView.storyboard │ │ ├── en.lproj │ │ │ └── ManifestPlist.strings │ │ └── thumbnail.png │ └── Sources │ │ ├── Delta │ │ ├── Cheats │ │ │ ├── CheatTableViewCell.swift │ │ │ ├── CheatTextView.swift │ │ │ ├── CheatValidator.swift │ │ │ ├── CheatsViewController.swift │ │ │ └── EditCheatViewController.swift │ │ ├── Components │ │ │ ├── Action.swift │ │ │ └── LoadImageURLOperation.swift │ │ ├── Emulation │ │ │ ├── ActionInput.swift │ │ │ └── DLTAGameViewController.swift │ │ ├── Extensions │ │ │ ├── DeltaCoreProtocol+Delta.swift │ │ │ ├── EmulatorCore+Cheats.swift │ │ │ ├── NSManagedObject+Conveniences.swift │ │ │ ├── NSManagedObjectContext+Conveniences.swift │ │ │ ├── UIColor+Delta.swift │ │ │ └── UILabel+FontSize.swift │ │ ├── GridCollectionViewCell.swift │ │ ├── GridCollectionViewLayout.swift │ │ ├── GridMenuViewController.swift │ │ ├── MenuItem.swift │ │ ├── Model │ │ │ ├── DatabaseManager.swift │ │ │ ├── Delta.xcdatamodeld │ │ │ │ ├── .xccurrentversion │ │ │ │ ├── Delta 2.xcdatamodel │ │ │ │ │ └── contents │ │ │ │ └── Delta.xcdatamodel │ │ │ │ │ └── contents │ │ │ ├── Human │ │ │ │ ├── NESCheat.swift │ │ │ │ ├── NESGame.swift │ │ │ │ └── NESSaveState.swift │ │ │ └── Machine │ │ │ │ ├── _Cheat.swift │ │ │ │ ├── _Game.swift │ │ │ │ └── _SaveState.swift │ │ ├── PauseMenu.storyboard │ │ ├── PauseViewController.swift │ │ ├── Presentation Controller │ │ │ ├── PausePresentationController.swift │ │ │ └── PausePresentationControllerContentView.xib │ │ ├── Save States │ │ │ ├── SaveStatesCollectionHeaderView.swift │ │ │ └── SaveStatesViewController.swift │ │ ├── Segues │ │ │ ├── PauseStoryboardSegue.swift │ │ │ └── PauseTransitionCoordinator.swift │ │ └── Systems │ │ │ └── System.swift │ │ ├── LiveGameViewController.swift │ │ ├── LiveViewSupport.swift │ │ ├── Roxas │ │ ├── Extensions │ │ │ ├── FileManager+Conveniences.swift │ │ │ └── UIViewController+TransitionState.swift │ │ ├── Placeholder View │ │ │ ├── RSTPlaceholderView.swift │ │ │ └── RSTPlaceholderView.xib │ │ ├── RSTCellContentDataSource.swift │ │ ├── RSTCellContentView.swift │ │ ├── RSTCollectionViewChangeOperation.swift │ │ ├── RSTFetchedResultsDataSource.swift │ │ ├── RSTOperationQueue.swift │ │ └── Roxas.swift │ │ ├── SHA1.swift │ │ └── Settings.swift ├── README.md └── SupportingContent │ ├── OtherFrameworks │ ├── iphoneos │ │ └── LiveViewHost.framework │ │ │ ├── Headers │ │ │ ├── LVHHostViewController.h │ │ │ ├── LVHInitialization.h │ │ │ ├── LiveViewHost-Swift.h │ │ │ └── LiveViewHost.h │ │ │ ├── Info.plist │ │ │ ├── LiveViewHost │ │ │ ├── Modules │ │ │ ├── LiveViewHost.swiftmodule │ │ │ │ ├── arm64.swiftdoc │ │ │ │ └── arm64.swiftmodule │ │ │ └── module.modulemap │ │ │ ├── _CodeSignature │ │ │ └── CodeResources │ │ │ └── version.plist │ └── iphonesimulator │ │ └── LiveViewHost.framework │ │ ├── Headers │ │ ├── LVHHostViewController.h │ │ ├── LVHInitialization.h │ │ ├── LiveViewHost-Swift.h │ │ └── LiveViewHost.h │ │ ├── Info.plist │ │ ├── LiveViewHost │ │ ├── Modules │ │ ├── LiveViewHost.swiftmodule │ │ │ ├── x86_64.swiftdoc │ │ │ └── x86_64.swiftmodule │ │ └── module.modulemap │ │ ├── _CodeSignature │ │ └── CodeResources │ │ └── version.plist │ ├── PlaygroundsFrameworks │ ├── iphoneos │ │ ├── PlaygroundBluetooth.framework │ │ │ ├── Assets.car │ │ │ ├── Headers │ │ │ │ ├── PlaygroundBluetooth-Swift.h │ │ │ │ └── PlaygroundBluetooth.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ │ ├── PlaygroundBluetooth.swiftmodule │ │ │ │ │ ├── arm64.swiftdoc │ │ │ │ │ └── arm64.swiftmodule │ │ │ │ └── module.modulemap │ │ │ ├── PlaygroundBluetooth │ │ │ ├── _CodeSignature │ │ │ │ └── CodeResources │ │ │ ├── en.lproj │ │ │ │ └── Localizable.strings │ │ │ └── version.plist │ │ └── PlaygroundSupport.framework │ │ │ ├── Headers │ │ │ └── PlaygroundSupport.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ ├── PlaygroundSupport.swiftmodule │ │ │ │ ├── arm64.swiftdoc │ │ │ │ └── arm64.swiftmodule │ │ │ └── module.modulemap │ │ │ ├── PlaygroundSupport │ │ │ ├── _CodeSignature │ │ │ └── CodeResources │ │ │ └── version.plist │ └── iphonesimulator │ │ ├── PlaygroundBluetooth.framework │ │ ├── Assets.car │ │ ├── Headers │ │ │ ├── PlaygroundBluetooth-Swift.h │ │ │ └── PlaygroundBluetooth.h │ │ ├── Info.plist │ │ ├── Modules │ │ │ ├── PlaygroundBluetooth.swiftmodule │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ └── x86_64.swiftmodule │ │ │ └── module.modulemap │ │ ├── PlaygroundBluetooth │ │ ├── _CodeSignature │ │ │ └── CodeResources │ │ ├── en.lproj │ │ │ └── Localizable.strings │ │ └── version.plist │ │ └── PlaygroundSupport.framework │ │ ├── Headers │ │ └── PlaygroundSupport.h │ │ ├── Info.plist │ │ ├── Modules │ │ ├── PlaygroundSupport.swiftmodule │ │ │ ├── x86_64.swiftdoc │ │ │ └── x86_64.swiftmodule │ │ └── module.modulemap │ │ ├── PlaygroundSupport │ │ ├── _CodeSignature │ │ └── CodeResources │ │ └── version.plist │ └── Tools │ └── expandBuildSettingReferences ├── License.pdf └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/.gitmodules -------------------------------------------------------------------------------- /Acknowledgements.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/Acknowledgements.rtf -------------------------------------------------------------------------------- /DeltaLite/ConfigFiles/Base/BaseBuildSettings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/ConfigFiles/Base/BaseBuildSettings.xcconfig -------------------------------------------------------------------------------- /DeltaLite/ConfigFiles/BuildSettings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/ConfigFiles/BuildSettings.xcconfig -------------------------------------------------------------------------------- /DeltaLite/ConfigFiles/Overrides/BookOverridingBuildSettings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/ConfigFiles/Overrides/BookOverridingBuildSettings.xcconfig -------------------------------------------------------------------------------- /DeltaLite/LICENSE/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/LICENSE/LICENSE.txt -------------------------------------------------------------------------------- /DeltaLite/LiveViewTestApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/LiveViewTestApp/AppDelegate.swift -------------------------------------------------------------------------------- /DeltaLite/LiveViewTestApp/Base.lproj/LiveViewTestAppLaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/LiveViewTestApp/Base.lproj/LiveViewTestAppLaunchScreen.storyboard -------------------------------------------------------------------------------- /DeltaLite/LiveViewTestApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/LiveViewTestApp/Info.plist -------------------------------------------------------------------------------- /DeltaLite/LiveViewTestApp/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/LiveViewTestApp/Main.storyboard -------------------------------------------------------------------------------- /DeltaLite/LiveViewTestApp/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/LiveViewTestApp/ViewController.swift -------------------------------------------------------------------------------- /DeltaLite/LiveViewTestApp/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/LiveViewTestApp/version.plist -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook.xcodeproj/.xcodesamplecode.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook.xcodeproj/.xcodesamplecode.plist -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Assets/Assets.xcassets/CheatCodes.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Assets/Assets.xcassets/CheatCodes.imageset/Contents.json -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Assets/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Assets/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Assets/Assets.xcassets/FastForward.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Assets/Assets.xcassets/FastForward.imageset/Contents.json -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Assets/Assets.xcassets/FastForward.imageset/FastForward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Assets/Assets.xcassets/FastForward.imageset/FastForward.png -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Assets/Assets.xcassets/FastForward.imageset/FastForward@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Assets/Assets.xcassets/FastForward.imageset/FastForward@3x.png -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Assets/Assets.xcassets/LoadSaveState.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Assets/Assets.xcassets/LoadSaveState.imageset/Contents.json -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Assets/Assets.xcassets/LoadSaveState.imageset/LoadSaveState.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Assets/Assets.xcassets/LoadSaveState.imageset/LoadSaveState.png -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Assets/Assets.xcassets/LoadSaveState.imageset/LoadSaveState@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Assets/Assets.xcassets/LoadSaveState.imageset/LoadSaveState@3x.png -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Assets/Assets.xcassets/Pause.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Assets/Assets.xcassets/Pause.imageset/Contents.json -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Assets/Assets.xcassets/Pause.imageset/Pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Assets/Assets.xcassets/Pause.imageset/Pause.png -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Assets/Assets.xcassets/Pause.imageset/Pause@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Assets/Assets.xcassets/Pause.imageset/Pause@3x.png -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Assets/Assets.xcassets/SaveSaveState.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Assets/Assets.xcassets/SaveSaveState.imageset/Contents.json -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Assets/Assets.xcassets/SaveSaveState.imageset/SaveSaveState.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Assets/Assets.xcassets/SaveSaveState.imageset/SaveSaveState.png -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Assets/Assets.xcassets/SaveSaveState.imageset/SaveSaveState@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Assets/Assets.xcassets/SaveSaveState.imageset/SaveSaveState@3x.png -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Assets/Assets.xcassets/SustainButtons.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Assets/Assets.xcassets/SustainButtons.imageset/Contents.json -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Assets/Assets.xcassets/SustainButtons.imageset/sustain@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Assets/Assets.xcassets/SustainButtons.imageset/sustain@1x.png -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Assets/Assets.xcassets/SustainButtons.imageset/sustain@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Assets/Assets.xcassets/SustainButtons.imageset/sustain@3x.png -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Chapters/Chapter1.playgroundchapter/Manifest.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Chapters/Chapter1.playgroundchapter/Manifest.plist -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Chapters/Chapter1.playgroundchapter/Pages/PlaygroundPage.playgroundpage/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Chapters/Chapter1.playgroundchapter/Pages/PlaygroundPage.playgroundpage/Contents.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Chapters/Chapter1.playgroundchapter/Pages/PlaygroundPage.playgroundpage/LiveView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Chapters/Chapter1.playgroundchapter/Pages/PlaygroundPage.playgroundpage/LiveView.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Chapters/Chapter1.playgroundchapter/Pages/PlaygroundPage.playgroundpage/Manifest.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Chapters/Chapter1.playgroundchapter/Pages/PlaygroundPage.playgroundpage/Manifest.plist -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Manifest.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Manifest.plist -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/PrivateResources/Assets/CheatCodes@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/PrivateResources/Assets/CheatCodes@2x.png -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/PrivateResources/Assets/FastForward@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/PrivateResources/Assets/FastForward@2x.png -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/PrivateResources/Assets/LoadSaveState@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/PrivateResources/Assets/LoadSaveState@2x.png -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/PrivateResources/Assets/Pause@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/PrivateResources/Assets/Pause@2x.png -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/PrivateResources/Assets/SaveSaveState@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/PrivateResources/Assets/SaveSaveState@2x.png -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/PrivateResources/Assets/SustainButtons@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/PrivateResources/Assets/SustainButtons@2x.png -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/PrivateResources/Base.lproj/LiveView.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/PrivateResources/Base.lproj/LiveView.storyboard -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/PrivateResources/en.lproj/ManifestPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/PrivateResources/en.lproj/ManifestPlist.strings -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/PrivateResources/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/PrivateResources/thumbnail.png -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Cheats/CheatTableViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Cheats/CheatTableViewCell.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Cheats/CheatTextView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Cheats/CheatTextView.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Cheats/CheatValidator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Cheats/CheatValidator.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Cheats/CheatsViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Cheats/CheatsViewController.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Cheats/EditCheatViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Cheats/EditCheatViewController.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Components/Action.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Components/Action.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Components/LoadImageURLOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Components/LoadImageURLOperation.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Emulation/ActionInput.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Emulation/ActionInput.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Emulation/DLTAGameViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Emulation/DLTAGameViewController.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Extensions/DeltaCoreProtocol+Delta.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Extensions/DeltaCoreProtocol+Delta.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Extensions/EmulatorCore+Cheats.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Extensions/EmulatorCore+Cheats.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Extensions/NSManagedObject+Conveniences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Extensions/NSManagedObject+Conveniences.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Extensions/NSManagedObjectContext+Conveniences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Extensions/NSManagedObjectContext+Conveniences.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Extensions/UIColor+Delta.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Extensions/UIColor+Delta.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Extensions/UILabel+FontSize.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Extensions/UILabel+FontSize.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/GridCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/GridCollectionViewCell.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/GridCollectionViewLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/GridCollectionViewLayout.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/GridMenuViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/GridMenuViewController.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/MenuItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/MenuItem.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Model/DatabaseManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Model/DatabaseManager.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Model/Delta.xcdatamodeld/.xccurrentversion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Model/Delta.xcdatamodeld/.xccurrentversion -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Model/Delta.xcdatamodeld/Delta 2.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Model/Delta.xcdatamodeld/Delta 2.xcdatamodel/contents -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Model/Delta.xcdatamodeld/Delta.xcdatamodel/contents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Model/Delta.xcdatamodeld/Delta.xcdatamodel/contents -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Model/Human/NESCheat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Model/Human/NESCheat.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Model/Human/NESGame.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Model/Human/NESGame.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Model/Human/NESSaveState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Model/Human/NESSaveState.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Model/Machine/_Cheat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Model/Machine/_Cheat.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Model/Machine/_Game.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Model/Machine/_Game.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Model/Machine/_SaveState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Model/Machine/_SaveState.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/PauseMenu.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/PauseMenu.storyboard -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/PauseViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/PauseViewController.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Presentation Controller/PausePresentationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Presentation Controller/PausePresentationController.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Presentation Controller/PausePresentationControllerContentView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Presentation Controller/PausePresentationControllerContentView.xib -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Save States/SaveStatesCollectionHeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Save States/SaveStatesCollectionHeaderView.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Save States/SaveStatesViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Save States/SaveStatesViewController.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Segues/PauseStoryboardSegue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Segues/PauseStoryboardSegue.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Segues/PauseTransitionCoordinator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Segues/PauseTransitionCoordinator.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Delta/Systems/System.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Delta/Systems/System.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/LiveGameViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/LiveGameViewController.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/LiveViewSupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/LiveViewSupport.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Roxas/Extensions/FileManager+Conveniences.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Roxas/Extensions/FileManager+Conveniences.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Roxas/Extensions/UIViewController+TransitionState.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Roxas/Extensions/UIViewController+TransitionState.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Roxas/Placeholder View/RSTPlaceholderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Roxas/Placeholder View/RSTPlaceholderView.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Roxas/Placeholder View/RSTPlaceholderView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Roxas/Placeholder View/RSTPlaceholderView.xib -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Roxas/RSTCellContentDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Roxas/RSTCellContentDataSource.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Roxas/RSTCellContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Roxas/RSTCellContentView.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Roxas/RSTCollectionViewChangeOperation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Roxas/RSTCollectionViewChangeOperation.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Roxas/RSTFetchedResultsDataSource.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Roxas/RSTFetchedResultsDataSource.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Roxas/RSTOperationQueue.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Roxas/RSTOperationQueue.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Roxas/Roxas.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Roxas/Roxas.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/SHA1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/SHA1.swift -------------------------------------------------------------------------------- /DeltaLite/PlaygroundBook/Sources/Settings.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/PlaygroundBook/Sources/Settings.swift -------------------------------------------------------------------------------- /DeltaLite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/README.md -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/OtherFrameworks/iphoneos/LiveViewHost.framework/Headers/LVHHostViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/OtherFrameworks/iphoneos/LiveViewHost.framework/Headers/LVHHostViewController.h -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/OtherFrameworks/iphoneos/LiveViewHost.framework/Headers/LVHInitialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/OtherFrameworks/iphoneos/LiveViewHost.framework/Headers/LVHInitialization.h -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/OtherFrameworks/iphoneos/LiveViewHost.framework/Headers/LiveViewHost-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/OtherFrameworks/iphoneos/LiveViewHost.framework/Headers/LiveViewHost-Swift.h -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/OtherFrameworks/iphoneos/LiveViewHost.framework/Headers/LiveViewHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/OtherFrameworks/iphoneos/LiveViewHost.framework/Headers/LiveViewHost.h -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/OtherFrameworks/iphoneos/LiveViewHost.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/OtherFrameworks/iphoneos/LiveViewHost.framework/Info.plist -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/OtherFrameworks/iphoneos/LiveViewHost.framework/LiveViewHost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/OtherFrameworks/iphoneos/LiveViewHost.framework/LiveViewHost -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/OtherFrameworks/iphoneos/LiveViewHost.framework/Modules/LiveViewHost.swiftmodule/arm64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/OtherFrameworks/iphoneos/LiveViewHost.framework/Modules/LiveViewHost.swiftmodule/arm64.swiftdoc -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/OtherFrameworks/iphoneos/LiveViewHost.framework/Modules/LiveViewHost.swiftmodule/arm64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/OtherFrameworks/iphoneos/LiveViewHost.framework/Modules/LiveViewHost.swiftmodule/arm64.swiftmodule -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/OtherFrameworks/iphoneos/LiveViewHost.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/OtherFrameworks/iphoneos/LiveViewHost.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/OtherFrameworks/iphoneos/LiveViewHost.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/OtherFrameworks/iphoneos/LiveViewHost.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/OtherFrameworks/iphoneos/LiveViewHost.framework/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/OtherFrameworks/iphoneos/LiveViewHost.framework/version.plist -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/OtherFrameworks/iphonesimulator/LiveViewHost.framework/Headers/LVHHostViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/OtherFrameworks/iphonesimulator/LiveViewHost.framework/Headers/LVHHostViewController.h -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/OtherFrameworks/iphonesimulator/LiveViewHost.framework/Headers/LVHInitialization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/OtherFrameworks/iphonesimulator/LiveViewHost.framework/Headers/LVHInitialization.h -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/OtherFrameworks/iphonesimulator/LiveViewHost.framework/Headers/LiveViewHost-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/OtherFrameworks/iphonesimulator/LiveViewHost.framework/Headers/LiveViewHost-Swift.h -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/OtherFrameworks/iphonesimulator/LiveViewHost.framework/Headers/LiveViewHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/OtherFrameworks/iphonesimulator/LiveViewHost.framework/Headers/LiveViewHost.h -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/OtherFrameworks/iphonesimulator/LiveViewHost.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/OtherFrameworks/iphonesimulator/LiveViewHost.framework/Info.plist -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/OtherFrameworks/iphonesimulator/LiveViewHost.framework/LiveViewHost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/OtherFrameworks/iphonesimulator/LiveViewHost.framework/LiveViewHost -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/OtherFrameworks/iphonesimulator/LiveViewHost.framework/Modules/LiveViewHost.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/OtherFrameworks/iphonesimulator/LiveViewHost.framework/Modules/LiveViewHost.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/OtherFrameworks/iphonesimulator/LiveViewHost.framework/Modules/LiveViewHost.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/OtherFrameworks/iphonesimulator/LiveViewHost.framework/Modules/LiveViewHost.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/OtherFrameworks/iphonesimulator/LiveViewHost.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/OtherFrameworks/iphonesimulator/LiveViewHost.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/OtherFrameworks/iphonesimulator/LiveViewHost.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/OtherFrameworks/iphonesimulator/LiveViewHost.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/OtherFrameworks/iphonesimulator/LiveViewHost.framework/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/OtherFrameworks/iphonesimulator/LiveViewHost.framework/version.plist -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundBluetooth.framework/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundBluetooth.framework/Assets.car -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundBluetooth.framework/Headers/PlaygroundBluetooth-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundBluetooth.framework/Headers/PlaygroundBluetooth-Swift.h -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundBluetooth.framework/Headers/PlaygroundBluetooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundBluetooth.framework/Headers/PlaygroundBluetooth.h -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundBluetooth.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundBluetooth.framework/Info.plist -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundBluetooth.framework/Modules/PlaygroundBluetooth.swiftmodule/arm64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundBluetooth.framework/Modules/PlaygroundBluetooth.swiftmodule/arm64.swiftdoc -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundBluetooth.framework/Modules/PlaygroundBluetooth.swiftmodule/arm64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundBluetooth.framework/Modules/PlaygroundBluetooth.swiftmodule/arm64.swiftmodule -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundBluetooth.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundBluetooth.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundBluetooth.framework/PlaygroundBluetooth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundBluetooth.framework/PlaygroundBluetooth -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundBluetooth.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundBluetooth.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundBluetooth.framework/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundBluetooth.framework/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundBluetooth.framework/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundBluetooth.framework/version.plist -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundSupport.framework/Headers/PlaygroundSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundSupport.framework/Headers/PlaygroundSupport.h -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundSupport.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundSupport.framework/Info.plist -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundSupport.framework/Modules/PlaygroundSupport.swiftmodule/arm64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundSupport.framework/Modules/PlaygroundSupport.swiftmodule/arm64.swiftdoc -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundSupport.framework/Modules/PlaygroundSupport.swiftmodule/arm64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundSupport.framework/Modules/PlaygroundSupport.swiftmodule/arm64.swiftmodule -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundSupport.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundSupport.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundSupport.framework/PlaygroundSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundSupport.framework/PlaygroundSupport -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundSupport.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundSupport.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundSupport.framework/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphoneos/PlaygroundSupport.framework/version.plist -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundBluetooth.framework/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundBluetooth.framework/Assets.car -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundBluetooth.framework/Headers/PlaygroundBluetooth-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundBluetooth.framework/Headers/PlaygroundBluetooth-Swift.h -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundBluetooth.framework/Headers/PlaygroundBluetooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundBluetooth.framework/Headers/PlaygroundBluetooth.h -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundBluetooth.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundBluetooth.framework/Info.plist -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundBluetooth.framework/Modules/PlaygroundBluetooth.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundBluetooth.framework/Modules/PlaygroundBluetooth.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundBluetooth.framework/Modules/PlaygroundBluetooth.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundBluetooth.framework/Modules/PlaygroundBluetooth.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundBluetooth.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundBluetooth.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundBluetooth.framework/PlaygroundBluetooth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundBluetooth.framework/PlaygroundBluetooth -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundBluetooth.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundBluetooth.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundBluetooth.framework/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundBluetooth.framework/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundBluetooth.framework/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundBluetooth.framework/version.plist -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundSupport.framework/Headers/PlaygroundSupport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundSupport.framework/Headers/PlaygroundSupport.h -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundSupport.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundSupport.framework/Info.plist -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundSupport.framework/Modules/PlaygroundSupport.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundSupport.framework/Modules/PlaygroundSupport.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundSupport.framework/Modules/PlaygroundSupport.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundSupport.framework/Modules/PlaygroundSupport.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundSupport.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundSupport.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundSupport.framework/PlaygroundSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundSupport.framework/PlaygroundSupport -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundSupport.framework/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundSupport.framework/_CodeSignature/CodeResources -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundSupport.framework/version.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/PlaygroundsFrameworks/iphonesimulator/PlaygroundSupport.framework/version.plist -------------------------------------------------------------------------------- /DeltaLite/SupportingContent/Tools/expandBuildSettingReferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/DeltaLite/SupportingContent/Tools/expandBuildSettingReferences -------------------------------------------------------------------------------- /License.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/License.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rileytestut/DeltaLite/HEAD/README.md --------------------------------------------------------------------------------