├── LICENSE ├── README.md ├── android ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── assets │ ├── audio │ │ └── fxsplash.mp3 │ ├── lights.png │ ├── m01.png │ ├── spl2.png │ ├── t01.png │ ├── t02.png │ ├── t03.png │ └── uipcfont.png ├── build.gradle ├── gen │ └── com │ │ └── orangepixel │ │ └── planetbusters │ │ └── android │ │ ├── BuildConfig.java │ │ └── R.java ├── ic_launcher-web.png ├── libs │ ├── armeabi-v7a │ │ └── libgdx.so │ ├── armeabi │ │ └── libgdx.so │ └── x86 │ │ └── libgdx.so ├── lint.xml ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ └── values │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── orangepixel │ └── planetbusters │ └── android │ └── AndroidLauncher.java ├── core ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── build.gradle └── src │ └── com │ └── orangepixel │ ├── controller │ ├── ControllerMapping.java │ ├── GSGamePad.java │ ├── GSGamePadAndroid.java │ ├── Gamepad.java │ ├── PS3.java │ ├── PS4.java │ ├── PS4OSX.java │ ├── ProExPowerA.java │ ├── XBox.java │ ├── XBoxLinux.java │ ├── XBoxLinuxAlt.java │ └── XBoxOSX.java │ ├── planetbusters │ ├── Audio.java │ ├── Bullets.java │ ├── Entity.java │ ├── FX.java │ ├── Globals.java │ ├── Levelroom.java │ ├── Mission.java │ ├── Monsters.java │ ├── Player.java │ ├── PlayerProfile.java │ ├── World.java │ └── myCanvas.java │ ├── social │ └── Social.java │ └── utils │ ├── ArcadeCanvas.java │ ├── FLight.java │ └── Rect.java ├── desktop ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── build.gradle └── src │ └── com │ └── orangepixel │ └── planetbusters │ └── desktop │ └── DesktopLauncher.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── ios ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── Info.plist.xml ├── build.gradle ├── data │ ├── Default-375w-667h@2x.png │ ├── Default-414w-736h@3x.png │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── Default@2x~ipad.png │ ├── Default~ipad.png │ ├── Icon-72.png │ ├── Icon-72@2x.png │ ├── Icon.png │ └── Icon@2x.png ├── robovm.properties ├── robovm.xml └── src │ └── com │ └── orangepixel │ └── planetbusters │ └── IOSLauncher.java ├── local.properties ├── settings.gradle └── tempgfx └── mockup.xcf /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/README.md -------------------------------------------------------------------------------- /android/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/android/.classpath -------------------------------------------------------------------------------- /android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/android/.project -------------------------------------------------------------------------------- /android/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/android/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /android/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/android/AndroidManifest.xml -------------------------------------------------------------------------------- /android/assets/audio/fxsplash.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/android/assets/audio/fxsplash.mp3 -------------------------------------------------------------------------------- /android/assets/lights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/android/assets/lights.png -------------------------------------------------------------------------------- /android/assets/m01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/android/assets/m01.png -------------------------------------------------------------------------------- /android/assets/spl2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/android/assets/spl2.png -------------------------------------------------------------------------------- /android/assets/t01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/android/assets/t01.png -------------------------------------------------------------------------------- /android/assets/t02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/android/assets/t02.png -------------------------------------------------------------------------------- /android/assets/t03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/android/assets/t03.png -------------------------------------------------------------------------------- /android/assets/uipcfont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/android/assets/uipcfont.png -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gen/com/orangepixel/planetbusters/android/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/android/gen/com/orangepixel/planetbusters/android/BuildConfig.java -------------------------------------------------------------------------------- /android/gen/com/orangepixel/planetbusters/android/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/android/gen/com/orangepixel/planetbusters/android/R.java -------------------------------------------------------------------------------- /android/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/android/ic_launcher-web.png -------------------------------------------------------------------------------- /android/libs/armeabi-v7a/libgdx.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/android/libs/armeabi-v7a/libgdx.so -------------------------------------------------------------------------------- /android/libs/armeabi/libgdx.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/android/libs/armeabi/libgdx.so -------------------------------------------------------------------------------- /android/libs/x86/libgdx.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/android/libs/x86/libgdx.so -------------------------------------------------------------------------------- /android/lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/android/lint.xml -------------------------------------------------------------------------------- /android/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/android/proguard-project.txt -------------------------------------------------------------------------------- /android/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/android/project.properties -------------------------------------------------------------------------------- /android/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/android/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/android/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/android/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/android/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/android/res/values/strings.xml -------------------------------------------------------------------------------- /android/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/android/res/values/styles.xml -------------------------------------------------------------------------------- /android/src/com/orangepixel/planetbusters/android/AndroidLauncher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/android/src/com/orangepixel/planetbusters/android/AndroidLauncher.java -------------------------------------------------------------------------------- /core/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/.classpath -------------------------------------------------------------------------------- /core/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/.project -------------------------------------------------------------------------------- /core/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/build.gradle -------------------------------------------------------------------------------- /core/src/com/orangepixel/controller/ControllerMapping.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/src/com/orangepixel/controller/ControllerMapping.java -------------------------------------------------------------------------------- /core/src/com/orangepixel/controller/GSGamePad.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/src/com/orangepixel/controller/GSGamePad.java -------------------------------------------------------------------------------- /core/src/com/orangepixel/controller/GSGamePadAndroid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/src/com/orangepixel/controller/GSGamePadAndroid.java -------------------------------------------------------------------------------- /core/src/com/orangepixel/controller/Gamepad.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/src/com/orangepixel/controller/Gamepad.java -------------------------------------------------------------------------------- /core/src/com/orangepixel/controller/PS3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/src/com/orangepixel/controller/PS3.java -------------------------------------------------------------------------------- /core/src/com/orangepixel/controller/PS4.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/src/com/orangepixel/controller/PS4.java -------------------------------------------------------------------------------- /core/src/com/orangepixel/controller/PS4OSX.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/src/com/orangepixel/controller/PS4OSX.java -------------------------------------------------------------------------------- /core/src/com/orangepixel/controller/ProExPowerA.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/src/com/orangepixel/controller/ProExPowerA.java -------------------------------------------------------------------------------- /core/src/com/orangepixel/controller/XBox.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/src/com/orangepixel/controller/XBox.java -------------------------------------------------------------------------------- /core/src/com/orangepixel/controller/XBoxLinux.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/src/com/orangepixel/controller/XBoxLinux.java -------------------------------------------------------------------------------- /core/src/com/orangepixel/controller/XBoxLinuxAlt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/src/com/orangepixel/controller/XBoxLinuxAlt.java -------------------------------------------------------------------------------- /core/src/com/orangepixel/controller/XBoxOSX.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/src/com/orangepixel/controller/XBoxOSX.java -------------------------------------------------------------------------------- /core/src/com/orangepixel/planetbusters/Audio.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/src/com/orangepixel/planetbusters/Audio.java -------------------------------------------------------------------------------- /core/src/com/orangepixel/planetbusters/Bullets.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/src/com/orangepixel/planetbusters/Bullets.java -------------------------------------------------------------------------------- /core/src/com/orangepixel/planetbusters/Entity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/src/com/orangepixel/planetbusters/Entity.java -------------------------------------------------------------------------------- /core/src/com/orangepixel/planetbusters/FX.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/src/com/orangepixel/planetbusters/FX.java -------------------------------------------------------------------------------- /core/src/com/orangepixel/planetbusters/Globals.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/src/com/orangepixel/planetbusters/Globals.java -------------------------------------------------------------------------------- /core/src/com/orangepixel/planetbusters/Levelroom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/src/com/orangepixel/planetbusters/Levelroom.java -------------------------------------------------------------------------------- /core/src/com/orangepixel/planetbusters/Mission.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/src/com/orangepixel/planetbusters/Mission.java -------------------------------------------------------------------------------- /core/src/com/orangepixel/planetbusters/Monsters.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/src/com/orangepixel/planetbusters/Monsters.java -------------------------------------------------------------------------------- /core/src/com/orangepixel/planetbusters/Player.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/src/com/orangepixel/planetbusters/Player.java -------------------------------------------------------------------------------- /core/src/com/orangepixel/planetbusters/PlayerProfile.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/src/com/orangepixel/planetbusters/PlayerProfile.java -------------------------------------------------------------------------------- /core/src/com/orangepixel/planetbusters/World.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/src/com/orangepixel/planetbusters/World.java -------------------------------------------------------------------------------- /core/src/com/orangepixel/planetbusters/myCanvas.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/src/com/orangepixel/planetbusters/myCanvas.java -------------------------------------------------------------------------------- /core/src/com/orangepixel/social/Social.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/src/com/orangepixel/social/Social.java -------------------------------------------------------------------------------- /core/src/com/orangepixel/utils/ArcadeCanvas.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/src/com/orangepixel/utils/ArcadeCanvas.java -------------------------------------------------------------------------------- /core/src/com/orangepixel/utils/FLight.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/src/com/orangepixel/utils/FLight.java -------------------------------------------------------------------------------- /core/src/com/orangepixel/utils/Rect.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/core/src/com/orangepixel/utils/Rect.java -------------------------------------------------------------------------------- /desktop/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/desktop/.classpath -------------------------------------------------------------------------------- /desktop/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/desktop/.project -------------------------------------------------------------------------------- /desktop/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/desktop/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /desktop/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/desktop/build.gradle -------------------------------------------------------------------------------- /desktop/src/com/orangepixel/planetbusters/desktop/DesktopLauncher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/desktop/src/com/orangepixel/planetbusters/desktop/DesktopLauncher.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/gradlew.bat -------------------------------------------------------------------------------- /ios/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/ios/.classpath -------------------------------------------------------------------------------- /ios/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/ios/.project -------------------------------------------------------------------------------- /ios/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/ios/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /ios/Info.plist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/ios/Info.plist.xml -------------------------------------------------------------------------------- /ios/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/ios/build.gradle -------------------------------------------------------------------------------- /ios/data/Default-375w-667h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/ios/data/Default-375w-667h@2x.png -------------------------------------------------------------------------------- /ios/data/Default-414w-736h@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/ios/data/Default-414w-736h@3x.png -------------------------------------------------------------------------------- /ios/data/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/ios/data/Default-568h@2x.png -------------------------------------------------------------------------------- /ios/data/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/ios/data/Default.png -------------------------------------------------------------------------------- /ios/data/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/ios/data/Default@2x.png -------------------------------------------------------------------------------- /ios/data/Default@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/ios/data/Default@2x~ipad.png -------------------------------------------------------------------------------- /ios/data/Default~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/ios/data/Default~ipad.png -------------------------------------------------------------------------------- /ios/data/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/ios/data/Icon-72.png -------------------------------------------------------------------------------- /ios/data/Icon-72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/ios/data/Icon-72@2x.png -------------------------------------------------------------------------------- /ios/data/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/ios/data/Icon.png -------------------------------------------------------------------------------- /ios/data/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/ios/data/Icon@2x.png -------------------------------------------------------------------------------- /ios/robovm.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/ios/robovm.properties -------------------------------------------------------------------------------- /ios/robovm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/ios/robovm.xml -------------------------------------------------------------------------------- /ios/src/com/orangepixel/planetbusters/IOSLauncher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/ios/src/com/orangepixel/planetbusters/IOSLauncher.java -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/local.properties -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/settings.gradle -------------------------------------------------------------------------------- /tempgfx/mockup.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/orangepascal/planetbusters/HEAD/tempgfx/mockup.xcf --------------------------------------------------------------------------------