├── .github ├── Hi.swift ├── PULL_REQUEST_TEMPLATE └── hi.m ├── .travis.yml ├── GBA4iOS └── README.md ├── GBA4iOSv2 ├── README.md └── img │ └── README.md ├── LICENSE ├── Provenance └── README.md ├── README.md └── archive.md /.github/Hi.swift: -------------------------------------------------------------------------------- 1 | print("Hello world") 2 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThetaApps/ios-app-opensource/HEAD/.github/PULL_REQUEST_TEMPLATE -------------------------------------------------------------------------------- /.github/hi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThetaApps/ios-app-opensource/HEAD/.github/hi.m -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThetaApps/ios-app-opensource/HEAD/.travis.yml -------------------------------------------------------------------------------- /GBA4iOS/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /GBA4iOSv2/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /GBA4iOSv2/img/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThetaApps/ios-app-opensource/HEAD/LICENSE -------------------------------------------------------------------------------- /Provenance/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThetaApps/ios-app-opensource/HEAD/README.md -------------------------------------------------------------------------------- /archive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThetaApps/ios-app-opensource/HEAD/archive.md --------------------------------------------------------------------------------