├── .gitattributes ├── .gitignore ├── AAAInjectionFoundation.plist ├── LICENSE ├── Makefile ├── README.md ├── Tweak.x └── control /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/Injection-Foundation/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .theos 2 | .DS_Store 3 | packages -------------------------------------------------------------------------------- /AAAInjectionFoundation.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/Injection-Foundation/HEAD/AAAInjectionFoundation.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/Injection-Foundation/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/Injection-Foundation/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/Injection-Foundation/HEAD/README.md -------------------------------------------------------------------------------- /Tweak.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/Injection-Foundation/HEAD/Tweak.x -------------------------------------------------------------------------------- /control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoomSmart/Injection-Foundation/HEAD/control --------------------------------------------------------------------------------