├── .gitignore ├── AVFAudio.m ├── AVFoundation.m ├── LICENSE ├── Makefile ├── PatchFallGuys.sh ├── PatchFortnite.sh ├── README.md ├── StoreKit.swift ├── StoreKit.x ├── SwiftUI.swift ├── libcpp.c ├── libswiftCore.c └── libswiftCoreFake.c /.gitignore: -------------------------------------------------------------------------------- 1 | .theos/ 2 | packages/ 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /AVFAudio.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanhduytran0/StoreKit/HEAD/AVFAudio.m -------------------------------------------------------------------------------- /AVFoundation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanhduytran0/StoreKit/HEAD/AVFoundation.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanhduytran0/StoreKit/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanhduytran0/StoreKit/HEAD/Makefile -------------------------------------------------------------------------------- /PatchFallGuys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanhduytran0/StoreKit/HEAD/PatchFallGuys.sh -------------------------------------------------------------------------------- /PatchFortnite.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanhduytran0/StoreKit/HEAD/PatchFortnite.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanhduytran0/StoreKit/HEAD/README.md -------------------------------------------------------------------------------- /StoreKit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanhduytran0/StoreKit/HEAD/StoreKit.swift -------------------------------------------------------------------------------- /StoreKit.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanhduytran0/StoreKit/HEAD/StoreKit.x -------------------------------------------------------------------------------- /SwiftUI.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanhduytran0/StoreKit/HEAD/SwiftUI.swift -------------------------------------------------------------------------------- /libcpp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanhduytran0/StoreKit/HEAD/libcpp.c -------------------------------------------------------------------------------- /libswiftCore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanhduytran0/StoreKit/HEAD/libswiftCore.c -------------------------------------------------------------------------------- /libswiftCoreFake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/khanhduytran0/StoreKit/HEAD/libswiftCoreFake.c --------------------------------------------------------------------------------