├── .classpath ├── .project ├── FillerCreepForAndroid.iml ├── README.md ├── app ├── app.iml ├── build.gradle ├── build │ ├── generated │ │ └── source │ │ │ ├── buildConfig │ │ │ └── debug │ │ │ │ └── es │ │ │ │ └── softwareprocess │ │ │ │ └── fillercreep │ │ │ │ └── BuildConfig.java │ │ │ └── r │ │ │ └── debug │ │ │ └── es │ │ │ └── softwareprocess │ │ │ └── fillercreep │ │ │ └── R.java │ ├── intermediates │ │ ├── classes │ │ │ └── debug │ │ │ │ └── es │ │ │ │ └── softwareprocess │ │ │ │ └── fillercreep │ │ │ │ ├── AI.class │ │ │ │ ├── AIMaximum.class │ │ │ │ ├── BuildConfig.class │ │ │ │ ├── DarkEnergy.class │ │ │ │ ├── DarkMatter.class │ │ │ │ ├── Energy.class │ │ │ │ ├── FController.class │ │ │ │ ├── FModel.class │ │ │ │ ├── FView.class │ │ │ │ ├── FillerCreep.class │ │ │ │ ├── FillerCreepActivity$1.class │ │ │ │ ├── FillerCreepActivity$2.class │ │ │ │ ├── FillerCreepActivity$3.class │ │ │ │ ├── FillerCreepActivity$4.class │ │ │ │ ├── FillerCreepActivity$5.class │ │ │ │ ├── FillerCreepActivity.class │ │ │ │ ├── FillerCreepApplication.class │ │ │ │ ├── FillerCreepGraphicalGameActivity$1.class │ │ │ │ ├── FillerCreepGraphicalGameActivity$2.class │ │ │ │ ├── FillerCreepGraphicalGameActivity$3.class │ │ │ │ ├── FillerCreepGraphicalGameActivity$4.class │ │ │ │ ├── FillerCreepGraphicalGameActivity$5.class │ │ │ │ ├── FillerCreepGraphicalGameActivity$6.class │ │ │ │ ├── FillerCreepGraphicalGameActivity.class │ │ │ │ ├── FillerCreepGraphicalViewActivity$1.class │ │ │ │ ├── FillerCreepGraphicalViewActivity.class │ │ │ │ ├── FillerCreepTextViewActivity$1.class │ │ │ │ ├── FillerCreepTextViewActivity$2.class │ │ │ │ ├── FillerCreepTextViewActivity$3.class │ │ │ │ ├── FillerCreepTextViewActivity$4.class │ │ │ │ ├── FillerCreepTextViewActivity.class │ │ │ │ ├── FundamentalStuff.class │ │ │ │ ├── FundamentalStuffColorMap.class │ │ │ │ ├── GameController.class │ │ │ │ ├── GraphicalFillerCreepView.class │ │ │ │ ├── IntPoint.class │ │ │ │ ├── Matter.class │ │ │ │ ├── Player.class │ │ │ │ ├── R$attr.class │ │ │ │ ├── R$drawable.class │ │ │ │ ├── R$id.class │ │ │ │ ├── R$layout.class │ │ │ │ ├── R$string.class │ │ │ │ ├── R.class │ │ │ │ ├── Yang.class │ │ │ │ └── Yin.class │ │ ├── dex │ │ │ └── debug │ │ │ │ └── classes.dex │ │ ├── incremental │ │ │ ├── aidl │ │ │ │ └── debug │ │ │ │ │ └── dependency.store │ │ │ ├── mergeAssets │ │ │ │ └── debug │ │ │ │ │ └── merger.xml │ │ │ └── mergeResourcesdebug │ │ │ │ └── merger.xml │ │ ├── manifests │ │ │ └── full │ │ │ │ └── debug │ │ │ │ └── AndroidManifest.xml │ │ └── res │ │ │ ├── merged │ │ │ └── debug │ │ │ │ ├── drawable-hdpi │ │ │ │ ├── dark_energy.png │ │ │ │ ├── dark_matter.png │ │ │ │ ├── energy.png │ │ │ │ ├── ic_launcher.png │ │ │ │ └── matter.png │ │ │ │ ├── drawable-ldpi │ │ │ │ ├── dark_energy.png │ │ │ │ ├── dark_matter.png │ │ │ │ ├── energy.png │ │ │ │ ├── ic_launcher.png │ │ │ │ └── matter.png │ │ │ │ ├── drawable-mdpi │ │ │ │ ├── dark_energy.png │ │ │ │ ├── dark_matter.png │ │ │ │ ├── energy.png │ │ │ │ ├── ic_launcher.png │ │ │ │ └── matter.png │ │ │ │ ├── layout │ │ │ │ ├── graphicalinterface.xml │ │ │ │ ├── graphicalview.xml │ │ │ │ ├── main.xml │ │ │ │ └── textinterface.xml │ │ │ │ └── values │ │ │ │ └── values.xml │ │ │ └── resources-debug.ap_ │ └── outputs │ │ ├── apk │ │ ├── app-debug-unaligned.apk │ │ └── app-debug.apk │ │ └── logs │ │ └── manifest-merger-debug-report.txt └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── es │ │ └── softwareprocess │ │ └── fillercreep │ │ ├── AI.java │ │ ├── AIMaximum.java │ │ ├── DarkEnergy.java │ │ ├── DarkMatter.java │ │ ├── Energy.java │ │ ├── FController.java │ │ ├── FModel.java │ │ ├── FView.java │ │ ├── FillerCreep.java │ │ ├── FillerCreepActivity.java │ │ ├── FillerCreepApplication.java │ │ ├── FillerCreepGraphicalGameActivity.java │ │ ├── FillerCreepGraphicalViewActivity.java │ │ ├── FillerCreepTextViewActivity.java │ │ ├── FundamentalStuff.java │ │ ├── FundamentalStuffColorMap.java │ │ ├── GameController.java │ │ ├── GraphicalFillerCreepView.java │ │ ├── IntPoint.java │ │ ├── Matter.java │ │ ├── Player.java │ │ ├── Yang.java │ │ └── Yin.java │ └── res │ ├── drawable-hdpi │ ├── dark_energy.png │ ├── dark_matter.png │ ├── energy.png │ ├── ic_launcher.png │ └── matter.png │ ├── drawable-ldpi │ ├── dark_energy.png │ ├── dark_matter.png │ ├── energy.png │ ├── ic_launcher.png │ └── matter.png │ ├── drawable-mdpi │ ├── dark_energy.png │ ├── dark_matter.png │ ├── energy.png │ ├── ic_launcher.png │ └── matter.png │ ├── layout │ ├── graphicalinterface.xml │ ├── graphicalview.xml │ ├── main.xml │ └── textinterface.xml │ └── values │ └── strings.xml ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── import-summary.txt ├── local.properties └── settings.gradle /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/.classpath -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/.project -------------------------------------------------------------------------------- /FillerCreepForAndroid.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/FillerCreepForAndroid.iml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/README.md -------------------------------------------------------------------------------- /app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/app.iml -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/build/generated/source/buildConfig/debug/es/softwareprocess/fillercreep/BuildConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/generated/source/buildConfig/debug/es/softwareprocess/fillercreep/BuildConfig.java -------------------------------------------------------------------------------- /app/build/generated/source/r/debug/es/softwareprocess/fillercreep/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/generated/source/r/debug/es/softwareprocess/fillercreep/R.java -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/AI.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/AI.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/AIMaximum.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/AIMaximum.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/BuildConfig.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/DarkEnergy.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/DarkEnergy.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/DarkMatter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/DarkMatter.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/Energy.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/Energy.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FController.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FModel.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FModel.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FView.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreep.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreep.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepActivity$1.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepActivity$2.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepActivity$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepActivity$3.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepActivity$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepActivity$4.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepActivity$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepActivity$5.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepActivity.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepApplication.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepApplication.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepGraphicalGameActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepGraphicalGameActivity$1.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepGraphicalGameActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepGraphicalGameActivity$2.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepGraphicalGameActivity$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepGraphicalGameActivity$3.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepGraphicalGameActivity$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepGraphicalGameActivity$4.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepGraphicalGameActivity$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepGraphicalGameActivity$5.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepGraphicalGameActivity$6.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepGraphicalGameActivity$6.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepGraphicalGameActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepGraphicalGameActivity.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepGraphicalViewActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepGraphicalViewActivity$1.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepGraphicalViewActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepGraphicalViewActivity.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepTextViewActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepTextViewActivity$1.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepTextViewActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepTextViewActivity$2.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepTextViewActivity$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepTextViewActivity$3.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepTextViewActivity$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepTextViewActivity$4.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepTextViewActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FillerCreepTextViewActivity.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FundamentalStuff.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FundamentalStuff.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FundamentalStuffColorMap.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/FundamentalStuffColorMap.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/GameController.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/GameController.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/GraphicalFillerCreepView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/GraphicalFillerCreepView.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/IntPoint.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/IntPoint.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/Matter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/Matter.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/Player.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/Player.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/R$attr.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/R$drawable.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/R$id.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/R$layout.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/R$string.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/R.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/Yang.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/Yang.class -------------------------------------------------------------------------------- /app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/Yin.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/classes/debug/es/softwareprocess/fillercreep/Yin.class -------------------------------------------------------------------------------- /app/build/intermediates/dex/debug/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/dex/debug/classes.dex -------------------------------------------------------------------------------- /app/build/intermediates/incremental/aidl/debug/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeAssets/debug/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/incremental/mergeAssets/debug/merger.xml -------------------------------------------------------------------------------- /app/build/intermediates/incremental/mergeResourcesdebug/merger.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/incremental/mergeResourcesdebug/merger.xml -------------------------------------------------------------------------------- /app/build/intermediates/manifests/full/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/manifests/full/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/drawable-hdpi/dark_energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/res/merged/debug/drawable-hdpi/dark_energy.png -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/drawable-hdpi/dark_matter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/res/merged/debug/drawable-hdpi/dark_matter.png -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/drawable-hdpi/energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/res/merged/debug/drawable-hdpi/energy.png -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/res/merged/debug/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/drawable-hdpi/matter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/res/merged/debug/drawable-hdpi/matter.png -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/drawable-ldpi/dark_energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/res/merged/debug/drawable-ldpi/dark_energy.png -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/drawable-ldpi/dark_matter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/res/merged/debug/drawable-ldpi/dark_matter.png -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/drawable-ldpi/energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/res/merged/debug/drawable-ldpi/energy.png -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/res/merged/debug/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/drawable-ldpi/matter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/res/merged/debug/drawable-ldpi/matter.png -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/drawable-mdpi/dark_energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/res/merged/debug/drawable-mdpi/dark_energy.png -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/drawable-mdpi/dark_matter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/res/merged/debug/drawable-mdpi/dark_matter.png -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/drawable-mdpi/energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/res/merged/debug/drawable-mdpi/energy.png -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/res/merged/debug/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/drawable-mdpi/matter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/res/merged/debug/drawable-mdpi/matter.png -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/layout/graphicalinterface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/res/merged/debug/layout/graphicalinterface.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/layout/graphicalview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/res/merged/debug/layout/graphicalview.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/res/merged/debug/layout/main.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/layout/textinterface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/res/merged/debug/layout/textinterface.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/merged/debug/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/res/merged/debug/values/values.xml -------------------------------------------------------------------------------- /app/build/intermediates/res/resources-debug.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/intermediates/res/resources-debug.ap_ -------------------------------------------------------------------------------- /app/build/outputs/apk/app-debug-unaligned.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/outputs/apk/app-debug-unaligned.apk -------------------------------------------------------------------------------- /app/build/outputs/apk/app-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/outputs/apk/app-debug.apk -------------------------------------------------------------------------------- /app/build/outputs/logs/manifest-merger-debug-report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/build/outputs/logs/manifest-merger-debug-report.txt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/es/softwareprocess/fillercreep/AI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/java/es/softwareprocess/fillercreep/AI.java -------------------------------------------------------------------------------- /app/src/main/java/es/softwareprocess/fillercreep/AIMaximum.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/java/es/softwareprocess/fillercreep/AIMaximum.java -------------------------------------------------------------------------------- /app/src/main/java/es/softwareprocess/fillercreep/DarkEnergy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/java/es/softwareprocess/fillercreep/DarkEnergy.java -------------------------------------------------------------------------------- /app/src/main/java/es/softwareprocess/fillercreep/DarkMatter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/java/es/softwareprocess/fillercreep/DarkMatter.java -------------------------------------------------------------------------------- /app/src/main/java/es/softwareprocess/fillercreep/Energy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/java/es/softwareprocess/fillercreep/Energy.java -------------------------------------------------------------------------------- /app/src/main/java/es/softwareprocess/fillercreep/FController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/java/es/softwareprocess/fillercreep/FController.java -------------------------------------------------------------------------------- /app/src/main/java/es/softwareprocess/fillercreep/FModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/java/es/softwareprocess/fillercreep/FModel.java -------------------------------------------------------------------------------- /app/src/main/java/es/softwareprocess/fillercreep/FView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/java/es/softwareprocess/fillercreep/FView.java -------------------------------------------------------------------------------- /app/src/main/java/es/softwareprocess/fillercreep/FillerCreep.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/java/es/softwareprocess/fillercreep/FillerCreep.java -------------------------------------------------------------------------------- /app/src/main/java/es/softwareprocess/fillercreep/FillerCreepActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/java/es/softwareprocess/fillercreep/FillerCreepActivity.java -------------------------------------------------------------------------------- /app/src/main/java/es/softwareprocess/fillercreep/FillerCreepApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/java/es/softwareprocess/fillercreep/FillerCreepApplication.java -------------------------------------------------------------------------------- /app/src/main/java/es/softwareprocess/fillercreep/FillerCreepGraphicalGameActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/java/es/softwareprocess/fillercreep/FillerCreepGraphicalGameActivity.java -------------------------------------------------------------------------------- /app/src/main/java/es/softwareprocess/fillercreep/FillerCreepGraphicalViewActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/java/es/softwareprocess/fillercreep/FillerCreepGraphicalViewActivity.java -------------------------------------------------------------------------------- /app/src/main/java/es/softwareprocess/fillercreep/FillerCreepTextViewActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/java/es/softwareprocess/fillercreep/FillerCreepTextViewActivity.java -------------------------------------------------------------------------------- /app/src/main/java/es/softwareprocess/fillercreep/FundamentalStuff.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/java/es/softwareprocess/fillercreep/FundamentalStuff.java -------------------------------------------------------------------------------- /app/src/main/java/es/softwareprocess/fillercreep/FundamentalStuffColorMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/java/es/softwareprocess/fillercreep/FundamentalStuffColorMap.java -------------------------------------------------------------------------------- /app/src/main/java/es/softwareprocess/fillercreep/GameController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/java/es/softwareprocess/fillercreep/GameController.java -------------------------------------------------------------------------------- /app/src/main/java/es/softwareprocess/fillercreep/GraphicalFillerCreepView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/java/es/softwareprocess/fillercreep/GraphicalFillerCreepView.java -------------------------------------------------------------------------------- /app/src/main/java/es/softwareprocess/fillercreep/IntPoint.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/java/es/softwareprocess/fillercreep/IntPoint.java -------------------------------------------------------------------------------- /app/src/main/java/es/softwareprocess/fillercreep/Matter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/java/es/softwareprocess/fillercreep/Matter.java -------------------------------------------------------------------------------- /app/src/main/java/es/softwareprocess/fillercreep/Player.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/java/es/softwareprocess/fillercreep/Player.java -------------------------------------------------------------------------------- /app/src/main/java/es/softwareprocess/fillercreep/Yang.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/java/es/softwareprocess/fillercreep/Yang.java -------------------------------------------------------------------------------- /app/src/main/java/es/softwareprocess/fillercreep/Yin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/java/es/softwareprocess/fillercreep/Yin.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dark_energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/res/drawable-hdpi/dark_energy.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/dark_matter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/res/drawable-hdpi/dark_matter.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/res/drawable-hdpi/energy.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/matter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/res/drawable-hdpi/matter.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/dark_energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/res/drawable-ldpi/dark_energy.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/dark_matter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/res/drawable-ldpi/dark_matter.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/res/drawable-ldpi/energy.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-ldpi/matter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/res/drawable-ldpi/matter.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/dark_energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/res/drawable-mdpi/dark_energy.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/dark_matter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/res/drawable-mdpi/dark_matter.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/energy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/res/drawable-mdpi/energy.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/matter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/res/drawable-mdpi/matter.png -------------------------------------------------------------------------------- /app/src/main/res/layout/graphicalinterface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/res/layout/graphicalinterface.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/graphicalview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/res/layout/graphicalview.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/res/layout/main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/textinterface.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/res/layout/textinterface.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/gradlew.bat -------------------------------------------------------------------------------- /import-summary.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/import-summary.txt -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abramhindle/FillerCreepForAndroid/HEAD/local.properties -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------