├── README.md ├── TrollMods.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── xcuserdata │ └── apricot.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist └── TrollMods ├── Assets.xcassets ├── AccentColor.colorset │ └── Contents.json ├── AppIcon.appiconset │ ├── Contents.json │ └── TrollMods.png └── Contents.json ├── ContentView.swift ├── Mods ├── TrollFX │ ├── Sounds │ │ └── fart.caf │ ├── TrollFX.xcassets │ │ ├── Contents.json │ │ └── TrollFX.imageset │ │ │ ├── Contents.json │ │ │ └── TrollFX.png │ ├── TrollFXImpl.swift │ └── TrollFXView.swift ├── TrollHome │ ├── TrollHome.xcassets │ │ ├── Contents.json │ │ └── trollhome.imageset │ │ │ ├── Contents.json │ │ │ └── trollhome.png │ ├── TrollHomeImpl.swift │ └── TrollHomeView.swift └── TrollLock │ ├── Formations │ └── Default │ │ ├── trollformation1.png │ │ ├── trollformation10.png │ │ ├── trollformation11.png │ │ ├── trollformation12.png │ │ ├── trollformation13.png │ │ ├── trollformation14.png │ │ ├── trollformation15.png │ │ ├── trollformation16.png │ │ ├── trollformation17.png │ │ ├── trollformation18.png │ │ ├── trollformation19.png │ │ ├── trollformation2.png │ │ ├── trollformation20.png │ │ ├── trollformation21.png │ │ ├── trollformation22.png │ │ ├── trollformation23.png │ │ ├── trollformation24.png │ │ ├── trollformation25.png │ │ ├── trollformation26.png │ │ ├── trollformation27.png │ │ ├── trollformation28.png │ │ ├── trollformation29.png │ │ ├── trollformation3.png │ │ ├── trollformation30.png │ │ ├── trollformation31.png │ │ ├── trollformation32.png │ │ ├── trollformation33.png │ │ ├── trollformation34.png │ │ ├── trollformation35.png │ │ ├── trollformation36.png │ │ ├── trollformation37.png │ │ ├── trollformation38.png │ │ ├── trollformation39.png │ │ ├── trollformation4.png │ │ ├── trollformation40.png │ │ ├── trollformation5.png │ │ ├── trollformation6.png │ │ ├── trollformation7.png │ │ ├── trollformation8.png │ │ └── trollformation9.png │ ├── TrollLock.swift │ ├── TrollLock.xcassets │ ├── Assets │ │ ├── Contents.json │ │ └── TrollLock.imageset │ │ │ ├── Contents.json │ │ │ └── TrollLock-modified.png │ └── Contents.json │ └── baseLockAnimation.caml ├── Overwrite.swift ├── Preview Content └── Preview Assets.xcassets │ └── Contents.json ├── TrollMods-Bridging-Header.h ├── TrollModsApp.swift ├── Views ├── Files │ ├── FilesImpl.swift │ └── FilesView.swift └── ModsView.swift ├── vm_unaligned_copy_switch_race.c └── vm_unaligned_copy_switch_race.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/README.md -------------------------------------------------------------------------------- /TrollMods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TrollMods.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TrollMods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /TrollMods.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /TrollMods.xcodeproj/xcuserdata/apricot.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods.xcodeproj/xcuserdata/apricot.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /TrollMods.xcodeproj/xcuserdata/apricot.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods.xcodeproj/xcuserdata/apricot.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TrollMods/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /TrollMods/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TrollMods/Assets.xcassets/AppIcon.appiconset/TrollMods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Assets.xcassets/AppIcon.appiconset/TrollMods.png -------------------------------------------------------------------------------- /TrollMods/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TrollMods/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/ContentView.swift -------------------------------------------------------------------------------- /TrollMods/Mods/TrollFX/Sounds/fart.caf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollFX/Sounds/fart.caf -------------------------------------------------------------------------------- /TrollMods/Mods/TrollFX/TrollFX.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollFX/TrollFX.xcassets/Contents.json -------------------------------------------------------------------------------- /TrollMods/Mods/TrollFX/TrollFX.xcassets/TrollFX.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollFX/TrollFX.xcassets/TrollFX.imageset/Contents.json -------------------------------------------------------------------------------- /TrollMods/Mods/TrollFX/TrollFX.xcassets/TrollFX.imageset/TrollFX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollFX/TrollFX.xcassets/TrollFX.imageset/TrollFX.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollFX/TrollFXImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollFX/TrollFXImpl.swift -------------------------------------------------------------------------------- /TrollMods/Mods/TrollFX/TrollFXView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollFX/TrollFXView.swift -------------------------------------------------------------------------------- /TrollMods/Mods/TrollHome/TrollHome.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollHome/TrollHome.xcassets/Contents.json -------------------------------------------------------------------------------- /TrollMods/Mods/TrollHome/TrollHome.xcassets/trollhome.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollHome/TrollHome.xcassets/trollhome.imageset/Contents.json -------------------------------------------------------------------------------- /TrollMods/Mods/TrollHome/TrollHome.xcassets/trollhome.imageset/trollhome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollHome/TrollHome.xcassets/trollhome.imageset/trollhome.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollHome/TrollHomeImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollHome/TrollHomeImpl.swift -------------------------------------------------------------------------------- /TrollMods/Mods/TrollHome/TrollHomeView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollHome/TrollHomeView.swift -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation1.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation10.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation11.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation12.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation13.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation14.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation15.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation16.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation17.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation18.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation19.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation2.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation20.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation21.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation22.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation23.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation24.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation25.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation26.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation27.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation28.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation29.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation3.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation30.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation31.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation32.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation33.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation34.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation35.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation36.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation37.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation38.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation39.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation4.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation40.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation5.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation6.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation7.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation8.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/Formations/Default/trollformation9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/Formations/Default/trollformation9.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/TrollLock.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/TrollLock.swift -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/TrollLock.xcassets/Assets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/TrollLock.xcassets/Assets/Contents.json -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/TrollLock.xcassets/Assets/TrollLock.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/TrollLock.xcassets/Assets/TrollLock.imageset/Contents.json -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/TrollLock.xcassets/Assets/TrollLock.imageset/TrollLock-modified.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/TrollLock.xcassets/Assets/TrollLock.imageset/TrollLock-modified.png -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/TrollLock.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/TrollLock.xcassets/Contents.json -------------------------------------------------------------------------------- /TrollMods/Mods/TrollLock/baseLockAnimation.caml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Mods/TrollLock/baseLockAnimation.caml -------------------------------------------------------------------------------- /TrollMods/Overwrite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Overwrite.swift -------------------------------------------------------------------------------- /TrollMods/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /TrollMods/TrollMods-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/TrollMods-Bridging-Header.h -------------------------------------------------------------------------------- /TrollMods/TrollModsApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/TrollModsApp.swift -------------------------------------------------------------------------------- /TrollMods/Views/Files/FilesImpl.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Views/Files/FilesImpl.swift -------------------------------------------------------------------------------- /TrollMods/Views/Files/FilesView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Views/Files/FilesView.swift -------------------------------------------------------------------------------- /TrollMods/Views/ModsView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/Views/ModsView.swift -------------------------------------------------------------------------------- /TrollMods/vm_unaligned_copy_switch_race.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/vm_unaligned_copy_switch_race.c -------------------------------------------------------------------------------- /TrollMods/vm_unaligned_copy_switch_race.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seilfx/TrollMods/HEAD/TrollMods/vm_unaligned_copy_switch_race.h --------------------------------------------------------------------------------