Download legend of waffles Free Java Code
Description
A platformer game with RPG elements. Written in java and designed to run on mobile devices and desktops.
Icons
Source Files
The download file legend-of-waffles-master.zip has the following entries.
.gitignore//from w w w. j av a 2s .c o m
.idea/.name
.idea/ant.xml
.idea/artifacts/Android.xml
.idea/artifacts/Desktop_jar.xml
.idea/compiler.xml
.idea/copyright/profiles_settings.xml
.idea/encodings.xml
.idea/findbugs-idea.xml
.idea/misc.xml
.idea/modules.xml
.idea/scopes/scope_settings.xml
.idea/uiDesigner.xml
.idea/vcs.xml
Android/Android.iml
Android/AndroidManifest.xml
Android/ant.properties
Android/assets/AwesomeVillage.tmx
Android/assets/FancyShanty.tmx
Android/assets/StageInfo.xml
Android/assets/StartingArea.tmx
Android/assets/back2blue.ogg
Android/assets/background1.png
Android/assets/background2.png
Android/assets/boxhit.wav
Android/assets/cannonshot.wav
Android/assets/coin.wav
Android/assets/crabdeath.wav
Android/assets/footstep.wav
Android/assets/jump.wav
Android/assets/superchip.ogg
Android/assets/swordswing.wav
Android/assets/tileset.png
Android/assets/title.png
Android/build.xml
Android/gen/com/lunaticedit/legendofwaffles/BuildConfig.java
Android/gen/com/lunaticedit/legendofwaffles/Manifest.java
Android/gen/com/lunaticedit/legendofwaffles/R.java
Android/libs/armeabi-v7a/libandroidgl20.so
Android/libs/armeabi-v7a/libgdx.so
Android/libs/armeabi/libandroidgl20.so
Android/libs/armeabi/libgdx.so
Android/libs/gdx-backend-android.jar
Android/local.properties
Android/module_android.xml
Android/proguard-project.txt
Android/project.properties
Android/res/drawable-hdpi/ic_launcher.png
Android/res/drawable-ldpi/ic_launcher.png
Android/res/drawable-mdpi/ic_launcher.png
Android/res/drawable-xhdpi/ic_launcher.png
Android/res/layout/main.xml
Android/res/values/strings.xml
Android/src/com/lunaticedit/legendofwaffles/MainActivity.java
Desktop/Desktop.iml
Desktop/libs/gdx-backend-lwjgl-natives.jar
Desktop/libs/gdx-backend-lwjgl.jar
Desktop/libs/gdx-natives.jar
Desktop/module_desktop.xml
Desktop/src/META-INF/MANIFEST.MF
Desktop/src/com/lunaticedit/legendofwaffles/DesktopStarter.java
Main/Main.iml
Main/libs/gdx-sources.jar
Main/libs/gdx.jar
Main/module_main.xml
Main/src/com/lunaticedit/legendofwaffles/GameScreen.java
Main/src/com/lunaticedit/legendofwaffles/LegendOfWaffles.java
Main/src/com/lunaticedit/legendofwaffles/base/ActorBase.java
Main/src/com/lunaticedit/legendofwaffles/contracts/Actor.java
Main/src/com/lunaticedit/legendofwaffles/contracts/Animation.java
Main/src/com/lunaticedit/legendofwaffles/contracts/Attackable.java
Main/src/com/lunaticedit/legendofwaffles/contracts/GraphicsGenerator.java
Main/src/com/lunaticedit/legendofwaffles/contracts/NPC.java
Main/src/com/lunaticedit/legendofwaffles/contracts/Processable.java
Main/src/com/lunaticedit/legendofwaffles/contracts/Projectile.java
Main/src/com/lunaticedit/legendofwaffles/contracts/Prop.java
Main/src/com/lunaticedit/legendofwaffles/contracts/Renderable.java
Main/src/com/lunaticedit/legendofwaffles/contracts/Repository.java
Main/src/com/lunaticedit/legendofwaffles/contracts/Scene.java
Main/src/com/lunaticedit/legendofwaffles/contracts/Stage.java
Main/src/com/lunaticedit/legendofwaffles/contracts/StageObject.java
Main/src/com/lunaticedit/legendofwaffles/enums/Demeanor.java
Main/src/com/lunaticedit/legendofwaffles/enums/Facing.java
Main/src/com/lunaticedit/legendofwaffles/enums/Orientation.java
Main/src/com/lunaticedit/legendofwaffles/enums/RepositoryType.java
Main/src/com/lunaticedit/legendofwaffles/enums/SceneType.java
Main/src/com/lunaticedit/legendofwaffles/enums/SoundEffect.java
Main/src/com/lunaticedit/legendofwaffles/enums/WeaponType.java
Main/src/com/lunaticedit/legendofwaffles/factories/RepositoryFactory.java
Main/src/com/lunaticedit/legendofwaffles/factories/SceneFactory.java
Main/src/com/lunaticedit/legendofwaffles/factories/SpriteBatchFactory.java
Main/src/com/lunaticedit/legendofwaffles/factories/StageFactory.java
Main/src/com/lunaticedit/legendofwaffles/factories/StageObjectFactory.java
Main/src/com/lunaticedit/legendofwaffles/helpers/Constants.java
Main/src/com/lunaticedit/legendofwaffles/helpers/Dimension.java
Main/src/com/lunaticedit/legendofwaffles/helpers/Point.java
Main/src/com/lunaticedit/legendofwaffles/implementations/Input.java
Main/src/com/lunaticedit/legendofwaffles/implementations/MusicPlayer.java
Main/src/com/lunaticedit/legendofwaffles/implementations/graphicsgenerator/TilesetGraphicsGenerator.java
Main/src/com/lunaticedit/legendofwaffles/implementations/npc/Crab.java
Main/src/com/lunaticedit/legendofwaffles/implementations/repository/LiveRepository.java
Main/src/com/lunaticedit/legendofwaffles/implementations/repository/Player.java
Main/src/com/lunaticedit/legendofwaffles/implementations/scene/DeathScene.java
Main/src/com/lunaticedit/legendofwaffles/implementations/scene/GameEditor.java
Main/src/com/lunaticedit/legendofwaffles/implementations/scene/GameScene.java
Main/src/com/lunaticedit/legendofwaffles/implementations/scene/MainMenu.java
Main/src/com/lunaticedit/legendofwaffles/implementations/stage/StandardStage.java
Main/src/com/lunaticedit/legendofwaffles/implementations/stageobject/Coin.java
Main/src/com/lunaticedit/legendofwaffles/implementations/stageobject/CollisionRegion.java
Main/src/com/lunaticedit/legendofwaffles/implementations/stageobject/Door.java
Main/src/com/lunaticedit/legendofwaffles/implementations/stageobject/FireOutlet.java
Main/src/com/lunaticedit/legendofwaffles/implementations/stageobject/ItemBox.java
Main/src/com/lunaticedit/legendofwaffles/implementations/stageobject/LifeUp.java
Main/src/com/lunaticedit/legendofwaffles/implementations/stageobject/Platform.java
Main/src/com/lunaticedit/legendofwaffles/implementations/ui/InputView.java
Main/src/com/lunaticedit/legendofwaffles/implementations/ui/UI.java
Main/src/com/lunaticedit/legendofwaffles/implementations/ui/View.java
Main/src/com/lunaticedit/legendofwaffles/physics/HitHandler.java
Main/src/com/lunaticedit/legendofwaffles/physics/HitWatcher.java
Main/src/com/lunaticedit/legendofwaffles/physics/Physics.java
Main/src/com/lunaticedit/legendofwaffles/services/AnimationService.java
Main/src/com/lunaticedit/legendofwaffles/services/AttackableServices.java
Main/src/com/lunaticedit/legendofwaffles/services/NPCServices.java
Main/src/com/lunaticedit/legendofwaffles/services/ProcessableServices.java
Main/src/com/lunaticedit/legendofwaffles/services/RenderServices.java
Main/src/com/lunaticedit/legendofwaffles/services/RepositoryServices.java
Main/src/com/lunaticedit/legendofwaffles/services/StageServices.java
README.md
UNLICENSE
build.properties
build.xml
Download
Click the following link to download legend-of-waffles-master.zip.
legend-of-waffles-master.zip