├── Forking Paths ├── Bifurcan.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ ├── Bifurcan.xccheckout │ │ │ └── Forking Paths.xccheckout │ │ └── xcuserdata │ │ │ ├── VillaMoirai.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ │ ├── aliceffekt.xcuserdatad │ │ │ ├── UserInterfaceState.xcuserstate │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── tekgo.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ ├── VillaMoirai.xcuserdatad │ │ └── xcschemes │ │ │ ├── Bifurcan.xcscheme │ │ │ ├── BifurcanMac.xcscheme │ │ │ ├── BifurcanSaver.xcscheme │ │ │ └── xcschememanagement.plist │ │ ├── aliceffekt.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ │ ├── BifurcanMac.xcscheme │ │ │ ├── BifurcanSaver.xcscheme │ │ │ ├── Forking Paths.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── tekgo.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── Bifurcan.xcscheme │ │ ├── BifurcanMac.xcscheme │ │ ├── BifurcanSaver.xcscheme │ │ └── xcschememanagement.plist ├── BifurcanMac │ ├── Base.lproj │ │ └── MainMenu.xib │ ├── BifurcanMac-Info.plist │ ├── BifurcanMac-Prefix.pch │ ├── Images.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── en.lproj │ │ ├── Credits.rtf │ │ └── InfoPlist.strings │ ├── main.m │ ├── xxiivvAppDelegate.h │ ├── xxiivvAppDelegate.m │ ├── xxiivvBifView.h │ └── xxiivvBifView.m ├── BifurcanSaver │ ├── BifurcanSaver-Info.plist │ ├── BifurcanSaver-Prefix.pch │ ├── BifurcanSaverView.h │ ├── BifurcanSaverView.m │ ├── ConfigureSheet.nib │ │ ├── designable.nib │ │ └── keyedobjects.nib │ ├── UserDefaults.plist │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── thumbnail.png │ └── thumbnail@2x.png ├── Forking Paths │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Bifurcan-Info.plist │ ├── Bifurcan-Prefix.pch │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── icon.120.png │ │ │ ├── icon.152.png │ │ │ ├── icon.180.png │ │ │ └── icon.76.png │ │ ├── LaunchImage.launchimage │ │ │ └── Contents.json │ │ ├── grid.jpg │ │ ├── grid.png │ │ └── r.left@2x.jpg │ ├── click.fast.wav │ ├── click.high.wav │ ├── click.low.wav │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── icon.120.png │ ├── icon.152.png │ ├── icon.60.png │ ├── icon.76.png │ ├── main.m │ ├── splash.xxiivv.png │ ├── splash │ │ ├── segueFade.h │ │ ├── segueFade.m │ │ ├── splash.load.png │ │ ├── splash.logo.png │ │ ├── splash.support.png │ │ ├── splash.tune.wav │ │ ├── xxiivvSplash.h │ │ └── xxiivvSplash.m │ ├── xxiivvAppDelegate.h │ ├── xxiivvAppDelegate.m │ ├── xxiivvViewController.h │ └── xxiivvViewController.m └── images │ ├── 1.left.png │ ├── 1.left@2x.png │ ├── 1.right.png │ ├── 1.right@2x.png │ ├── 2.left.png │ ├── 2.left@2x.png │ ├── 2.right.png │ ├── 2.right@2x.png │ ├── 3.left.png │ ├── 3.left@2x.png │ ├── 3.right.png │ ├── 3.right@2x.png │ ├── 4.left.png │ ├── 4.left@2x.png │ ├── 4.right.png │ ├── 4.right@2x.png │ ├── 5.left.png │ ├── 5.left@2x.png │ ├── 5.right.png │ ├── 5.right@2x.png │ ├── 6.left.png │ ├── 6.left@2x.png │ ├── 6.right.png │ └── 6.right@2x.png ├── LICENSE.md └── README.md /Forking Paths/Bifurcan.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Bifurcan.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Forking Paths/Bifurcan.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Bifurcan.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Forking Paths/Bifurcan.xcodeproj/project.xcworkspace/xcshareddata/Bifurcan.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Bifurcan.xcodeproj/project.xcworkspace/xcshareddata/Bifurcan.xccheckout -------------------------------------------------------------------------------- /Forking Paths/Bifurcan.xcodeproj/project.xcworkspace/xcshareddata/Forking Paths.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Bifurcan.xcodeproj/project.xcworkspace/xcshareddata/Forking Paths.xccheckout -------------------------------------------------------------------------------- /Forking Paths/Bifurcan.xcodeproj/project.xcworkspace/xcuserdata/VillaMoirai.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Bifurcan.xcodeproj/project.xcworkspace/xcuserdata/VillaMoirai.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Forking Paths/Bifurcan.xcodeproj/project.xcworkspace/xcuserdata/VillaMoirai.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Bifurcan.xcodeproj/project.xcworkspace/xcuserdata/VillaMoirai.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Forking Paths/Bifurcan.xcodeproj/project.xcworkspace/xcuserdata/aliceffekt.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Bifurcan.xcodeproj/project.xcworkspace/xcuserdata/aliceffekt.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Forking Paths/Bifurcan.xcodeproj/project.xcworkspace/xcuserdata/aliceffekt.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Bifurcan.xcodeproj/project.xcworkspace/xcuserdata/aliceffekt.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Forking Paths/Bifurcan.xcodeproj/project.xcworkspace/xcuserdata/tekgo.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Bifurcan.xcodeproj/project.xcworkspace/xcuserdata/tekgo.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Forking Paths/Bifurcan.xcodeproj/xcuserdata/VillaMoirai.xcuserdatad/xcschemes/Bifurcan.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Bifurcan.xcodeproj/xcuserdata/VillaMoirai.xcuserdatad/xcschemes/Bifurcan.xcscheme -------------------------------------------------------------------------------- /Forking Paths/Bifurcan.xcodeproj/xcuserdata/VillaMoirai.xcuserdatad/xcschemes/BifurcanMac.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Bifurcan.xcodeproj/xcuserdata/VillaMoirai.xcuserdatad/xcschemes/BifurcanMac.xcscheme -------------------------------------------------------------------------------- /Forking Paths/Bifurcan.xcodeproj/xcuserdata/VillaMoirai.xcuserdatad/xcschemes/BifurcanSaver.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Bifurcan.xcodeproj/xcuserdata/VillaMoirai.xcuserdatad/xcschemes/BifurcanSaver.xcscheme -------------------------------------------------------------------------------- /Forking Paths/Bifurcan.xcodeproj/xcuserdata/VillaMoirai.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Bifurcan.xcodeproj/xcuserdata/VillaMoirai.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Forking Paths/Bifurcan.xcodeproj/xcuserdata/aliceffekt.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Bifurcan.xcodeproj/xcuserdata/aliceffekt.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Forking Paths/Bifurcan.xcodeproj/xcuserdata/aliceffekt.xcuserdatad/xcschemes/BifurcanMac.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Bifurcan.xcodeproj/xcuserdata/aliceffekt.xcuserdatad/xcschemes/BifurcanMac.xcscheme -------------------------------------------------------------------------------- /Forking Paths/Bifurcan.xcodeproj/xcuserdata/aliceffekt.xcuserdatad/xcschemes/BifurcanSaver.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Bifurcan.xcodeproj/xcuserdata/aliceffekt.xcuserdatad/xcschemes/BifurcanSaver.xcscheme -------------------------------------------------------------------------------- /Forking Paths/Bifurcan.xcodeproj/xcuserdata/aliceffekt.xcuserdatad/xcschemes/Forking Paths.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Bifurcan.xcodeproj/xcuserdata/aliceffekt.xcuserdatad/xcschemes/Forking Paths.xcscheme -------------------------------------------------------------------------------- /Forking Paths/Bifurcan.xcodeproj/xcuserdata/aliceffekt.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Bifurcan.xcodeproj/xcuserdata/aliceffekt.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Forking Paths/Bifurcan.xcodeproj/xcuserdata/tekgo.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Bifurcan.xcodeproj/xcuserdata/tekgo.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /Forking Paths/Bifurcan.xcodeproj/xcuserdata/tekgo.xcuserdatad/xcschemes/Bifurcan.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Bifurcan.xcodeproj/xcuserdata/tekgo.xcuserdatad/xcschemes/Bifurcan.xcscheme -------------------------------------------------------------------------------- /Forking Paths/Bifurcan.xcodeproj/xcuserdata/tekgo.xcuserdatad/xcschemes/BifurcanMac.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Bifurcan.xcodeproj/xcuserdata/tekgo.xcuserdatad/xcschemes/BifurcanMac.xcscheme -------------------------------------------------------------------------------- /Forking Paths/Bifurcan.xcodeproj/xcuserdata/tekgo.xcuserdatad/xcschemes/BifurcanSaver.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Bifurcan.xcodeproj/xcuserdata/tekgo.xcuserdatad/xcschemes/BifurcanSaver.xcscheme -------------------------------------------------------------------------------- /Forking Paths/Bifurcan.xcodeproj/xcuserdata/tekgo.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Bifurcan.xcodeproj/xcuserdata/tekgo.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Forking Paths/BifurcanMac/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/BifurcanMac/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Forking Paths/BifurcanMac/BifurcanMac-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/BifurcanMac/BifurcanMac-Info.plist -------------------------------------------------------------------------------- /Forking Paths/BifurcanMac/BifurcanMac-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/BifurcanMac/BifurcanMac-Prefix.pch -------------------------------------------------------------------------------- /Forking Paths/BifurcanMac/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/BifurcanMac/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Forking Paths/BifurcanMac/en.lproj/Credits.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/BifurcanMac/en.lproj/Credits.rtf -------------------------------------------------------------------------------- /Forking Paths/BifurcanMac/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Forking Paths/BifurcanMac/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/BifurcanMac/main.m -------------------------------------------------------------------------------- /Forking Paths/BifurcanMac/xxiivvAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/BifurcanMac/xxiivvAppDelegate.h -------------------------------------------------------------------------------- /Forking Paths/BifurcanMac/xxiivvAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/BifurcanMac/xxiivvAppDelegate.m -------------------------------------------------------------------------------- /Forking Paths/BifurcanMac/xxiivvBifView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/BifurcanMac/xxiivvBifView.h -------------------------------------------------------------------------------- /Forking Paths/BifurcanMac/xxiivvBifView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/BifurcanMac/xxiivvBifView.m -------------------------------------------------------------------------------- /Forking Paths/BifurcanSaver/BifurcanSaver-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/BifurcanSaver/BifurcanSaver-Info.plist -------------------------------------------------------------------------------- /Forking Paths/BifurcanSaver/BifurcanSaver-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/BifurcanSaver/BifurcanSaver-Prefix.pch -------------------------------------------------------------------------------- /Forking Paths/BifurcanSaver/BifurcanSaverView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/BifurcanSaver/BifurcanSaverView.h -------------------------------------------------------------------------------- /Forking Paths/BifurcanSaver/BifurcanSaverView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/BifurcanSaver/BifurcanSaverView.m -------------------------------------------------------------------------------- /Forking Paths/BifurcanSaver/ConfigureSheet.nib/designable.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/BifurcanSaver/ConfigureSheet.nib/designable.nib -------------------------------------------------------------------------------- /Forking Paths/BifurcanSaver/ConfigureSheet.nib/keyedobjects.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/BifurcanSaver/ConfigureSheet.nib/keyedobjects.nib -------------------------------------------------------------------------------- /Forking Paths/BifurcanSaver/UserDefaults.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/BifurcanSaver/UserDefaults.plist -------------------------------------------------------------------------------- /Forking Paths/BifurcanSaver/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Forking Paths/BifurcanSaver/thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/BifurcanSaver/thumbnail.png -------------------------------------------------------------------------------- /Forking Paths/BifurcanSaver/thumbnail@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/BifurcanSaver/thumbnail@2x.png -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/Bifurcan-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/Bifurcan-Info.plist -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/Bifurcan-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/Bifurcan-Prefix.pch -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/Images.xcassets/AppIcon.appiconset/icon.120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/Images.xcassets/AppIcon.appiconset/icon.120.png -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/Images.xcassets/AppIcon.appiconset/icon.152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/Images.xcassets/AppIcon.appiconset/icon.152.png -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/Images.xcassets/AppIcon.appiconset/icon.180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/Images.xcassets/AppIcon.appiconset/icon.180.png -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/Images.xcassets/AppIcon.appiconset/icon.76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/Images.xcassets/AppIcon.appiconset/icon.76.png -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/Images.xcassets/grid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/Images.xcassets/grid.jpg -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/Images.xcassets/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/Images.xcassets/grid.png -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/Images.xcassets/r.left@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/Images.xcassets/r.left@2x.jpg -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/click.fast.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/click.fast.wav -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/click.high.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/click.high.wav -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/click.low.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/click.low.wav -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/icon.120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/icon.120.png -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/icon.152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/icon.152.png -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/icon.60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/icon.60.png -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/icon.76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/icon.76.png -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/main.m -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/splash.xxiivv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/splash.xxiivv.png -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/splash/segueFade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/splash/segueFade.h -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/splash/segueFade.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/splash/segueFade.m -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/splash/splash.load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/splash/splash.load.png -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/splash/splash.logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/splash/splash.logo.png -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/splash/splash.support.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/splash/splash.support.png -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/splash/splash.tune.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/splash/splash.tune.wav -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/splash/xxiivvSplash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/splash/xxiivvSplash.h -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/splash/xxiivvSplash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/splash/xxiivvSplash.m -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/xxiivvAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/xxiivvAppDelegate.h -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/xxiivvAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/xxiivvAppDelegate.m -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/xxiivvViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/xxiivvViewController.h -------------------------------------------------------------------------------- /Forking Paths/Forking Paths/xxiivvViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/Forking Paths/xxiivvViewController.m -------------------------------------------------------------------------------- /Forking Paths/images/1.left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/images/1.left.png -------------------------------------------------------------------------------- /Forking Paths/images/1.left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/images/1.left@2x.png -------------------------------------------------------------------------------- /Forking Paths/images/1.right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/images/1.right.png -------------------------------------------------------------------------------- /Forking Paths/images/1.right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/images/1.right@2x.png -------------------------------------------------------------------------------- /Forking Paths/images/2.left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/images/2.left.png -------------------------------------------------------------------------------- /Forking Paths/images/2.left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/images/2.left@2x.png -------------------------------------------------------------------------------- /Forking Paths/images/2.right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/images/2.right.png -------------------------------------------------------------------------------- /Forking Paths/images/2.right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/images/2.right@2x.png -------------------------------------------------------------------------------- /Forking Paths/images/3.left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/images/3.left.png -------------------------------------------------------------------------------- /Forking Paths/images/3.left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/images/3.left@2x.png -------------------------------------------------------------------------------- /Forking Paths/images/3.right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/images/3.right.png -------------------------------------------------------------------------------- /Forking Paths/images/3.right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/images/3.right@2x.png -------------------------------------------------------------------------------- /Forking Paths/images/4.left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/images/4.left.png -------------------------------------------------------------------------------- /Forking Paths/images/4.left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/images/4.left@2x.png -------------------------------------------------------------------------------- /Forking Paths/images/4.right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/images/4.right.png -------------------------------------------------------------------------------- /Forking Paths/images/4.right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/images/4.right@2x.png -------------------------------------------------------------------------------- /Forking Paths/images/5.left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/images/5.left.png -------------------------------------------------------------------------------- /Forking Paths/images/5.left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/images/5.left@2x.png -------------------------------------------------------------------------------- /Forking Paths/images/5.right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/images/5.right.png -------------------------------------------------------------------------------- /Forking Paths/images/5.right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/images/5.right@2x.png -------------------------------------------------------------------------------- /Forking Paths/images/6.left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/images/6.left.png -------------------------------------------------------------------------------- /Forking Paths/images/6.left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/images/6.left@2x.png -------------------------------------------------------------------------------- /Forking Paths/images/6.right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/images/6.right.png -------------------------------------------------------------------------------- /Forking Paths/images/6.right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/Forking Paths/images/6.right@2x.png -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Echorridoors/Bifurcan/HEAD/README.md --------------------------------------------------------------------------------