├── .gitignore ├── .project ├── Logos ├── Logo Big.png ├── Wurfel Engine Banner.png ├── Wurfel Engine Poster.png ├── background big.png └── bg_gray.png ├── MinecraftToWurfelEngine ├── nbactions.xml ├── pom.xml └── src │ └── main │ └── java │ └── com │ └── bombinggames │ └── minecrafttowurfelengine │ ├── MinecraftImporter.java │ ├── MinecraftLoader.java │ └── mcmodify │ ├── location │ ├── LocChunkInDimension.java │ ├── LocChunkInRegion.java │ └── LocRegionInDimension.java │ ├── minecraft │ ├── Chunk.java │ ├── CompressionScheme.java │ ├── Dimension.java │ ├── Entity.java │ ├── FileRegion.java │ ├── Formatting.java │ ├── FormattingAware.java │ ├── IDs.java │ ├── Inventory.java │ ├── Level.java │ ├── Map.java │ ├── MemoryRegion.java │ ├── Mob.java │ ├── Region.java │ ├── ServerList.java │ ├── TileEntity.java │ └── World.java │ └── nbt │ ├── FormatException.java │ └── Tag.java ├── README.md ├── UML Class Diagramm.pdf ├── WurfelEngineWithDependencies.jar ├── core ├── .gitignore ├── nb-configuration.xml ├── nbactions.xml ├── pom.xml └── src │ ├── changes │ └── changes.xml │ ├── main │ ├── java │ │ ├── com │ │ │ └── bombinggames │ │ │ │ └── wurfelengine │ │ │ │ ├── Command.java │ │ │ │ ├── DesktopLauncher.java │ │ │ │ ├── LaunchCommand.java │ │ │ │ ├── WE.java │ │ │ │ ├── WurfelEngineIntro.java │ │ │ │ ├── core │ │ │ │ ├── AbstractMainMenu.java │ │ │ │ ├── Camera.java │ │ │ │ ├── Controller.java │ │ │ │ ├── DepthListNode.java │ │ │ │ ├── DevTools.java │ │ │ │ ├── EngineView.java │ │ │ │ ├── Events.java │ │ │ │ ├── GameManager.java │ │ │ │ ├── GameView.java │ │ │ │ ├── GameplayScreen.java │ │ │ │ ├── WEScreen.java │ │ │ │ ├── WorkingDirectory.java │ │ │ │ ├── console │ │ │ │ │ ├── BenchmarkCommand.java │ │ │ │ │ ├── CdCommand.java │ │ │ │ │ ├── ClearCommand.java │ │ │ │ │ ├── Console.java │ │ │ │ │ ├── ConsoleCommand.java │ │ │ │ │ ├── CreditsCommand.java │ │ │ │ │ ├── EditorCommand.java │ │ │ │ │ ├── ExitCommand.java │ │ │ │ │ ├── FillWithAirCommand.java │ │ │ │ │ ├── FullscreenCommand.java │ │ │ │ │ ├── KillallCommand.java │ │ │ │ │ ├── LECommand.java │ │ │ │ │ ├── LoadMapCommand.java │ │ │ │ │ ├── LsCommand.java │ │ │ │ │ ├── ManCommand.java │ │ │ │ │ ├── MenuCommand.java │ │ │ │ │ ├── PrintmapCommand.java │ │ │ │ │ ├── ReloadShadersCommand.java │ │ │ │ │ ├── SaveCommand.java │ │ │ │ │ ├── ScreenshakeCommand.java │ │ │ │ │ └── TeleportCommand.java │ │ │ │ ├── cvar │ │ │ │ │ ├── AbstractCVarSystem.java │ │ │ │ │ ├── BooleanCVar.java │ │ │ │ │ ├── CVar.java │ │ │ │ │ ├── CVarFlags.java │ │ │ │ │ ├── CVarSystemMap.java │ │ │ │ │ ├── CVarSystemRoot.java │ │ │ │ │ ├── CVarSystemSave.java │ │ │ │ │ ├── FloatCVar.java │ │ │ │ │ ├── IntCVar.java │ │ │ │ │ └── StringCVar.java │ │ │ │ ├── gameobjects │ │ │ │ │ ├── AbstractEntity.java │ │ │ │ │ ├── AbstractGameObject.java │ │ │ │ │ ├── Animatable.java │ │ │ │ │ ├── BenchmarkBall.java │ │ │ │ │ ├── Component.java │ │ │ │ │ ├── Controllable.java │ │ │ │ │ ├── Cursor.java │ │ │ │ │ ├── DestructionParticle.java │ │ │ │ │ ├── EntityAnimation.java │ │ │ │ │ ├── EntityBlock.java │ │ │ │ │ ├── EntityShadow.java │ │ │ │ │ ├── Explosion.java │ │ │ │ │ ├── MovableEntity.java │ │ │ │ │ ├── MoveToAi.java │ │ │ │ │ ├── Particle.java │ │ │ │ │ ├── ParticleEmitter.java │ │ │ │ │ ├── ParticleType.java │ │ │ │ │ ├── PointLightSource.java │ │ │ │ │ ├── Side.java │ │ │ │ │ ├── SimpleEntity.java │ │ │ │ │ └── package-info.java │ │ │ │ ├── lightengine │ │ │ │ │ ├── AmbientOcclusionCalculator.java │ │ │ │ │ ├── GlobalLightSource.java │ │ │ │ │ ├── LightEngine.java │ │ │ │ │ └── Moon.java │ │ │ │ ├── loading │ │ │ │ │ ├── LoadingBar.java │ │ │ │ │ └── LoadingScreen.java │ │ │ │ ├── map │ │ │ │ │ ├── AbstractBlockLogicExtension.java │ │ │ │ │ ├── BlockConfig.java │ │ │ │ │ ├── Chunk.java │ │ │ │ │ ├── ChunkLoader.java │ │ │ │ │ ├── CoordConnection.java │ │ │ │ │ ├── Coordinate.java │ │ │ │ │ ├── CustomMapCVarRegistration.java │ │ │ │ │ ├── Generator.java │ │ │ │ │ ├── Generators │ │ │ │ │ │ ├── AirGenerator.java │ │ │ │ │ │ ├── BlockTestGenerator.java │ │ │ │ │ │ ├── FullMapGenerator.java │ │ │ │ │ │ └── IslandGenerator.java │ │ │ │ │ ├── Intersection.java │ │ │ │ │ ├── Iterators │ │ │ │ │ │ ├── CoveredByCameraIterator.java │ │ │ │ │ │ └── DataIterator3D.java │ │ │ │ │ ├── LoadMenu.java │ │ │ │ │ ├── Map.java │ │ │ │ │ ├── MapButton.java │ │ │ │ │ ├── PfNode.java │ │ │ │ │ ├── Point.java │ │ │ │ │ ├── Position.java │ │ │ │ │ └── rendering │ │ │ │ │ │ ├── AnimatedBlock.java │ │ │ │ │ │ ├── GameSpaceSprite.java │ │ │ │ │ │ ├── RenderCell.java │ │ │ │ │ │ ├── RenderChunk.java │ │ │ │ │ │ ├── RenderStorage.java │ │ │ │ │ │ ├── Sea.java │ │ │ │ │ │ └── SpriteBatchWithZAxis.java │ │ │ │ └── sorting │ │ │ │ │ ├── AbstractSorter.java │ │ │ │ │ ├── DepthValueSort.java │ │ │ │ │ ├── NoSort.java │ │ │ │ │ ├── TopoGraphNode.java │ │ │ │ │ └── TopologicalSort.java │ │ │ │ ├── extension │ │ │ │ ├── basicmainmenu │ │ │ │ │ ├── BasicMainMenu.java │ │ │ │ │ ├── BasicMenuItem.java │ │ │ │ │ ├── GameViewWithCamera.java │ │ │ │ │ ├── MenuController.java │ │ │ │ │ ├── MenuView.java │ │ │ │ │ └── package-info.java │ │ │ │ └── shooting │ │ │ │ │ ├── Bullet.java │ │ │ │ │ ├── Laserdot.java │ │ │ │ │ └── Weapon.java │ │ │ │ ├── sound │ │ │ │ ├── SoundEngine.java │ │ │ │ └── SoundInstance.java │ │ │ │ └── utilities │ │ │ │ ├── AimBand.java │ │ │ │ ├── Benchmark.java │ │ │ │ ├── MiniMapChunkDebug.java │ │ │ │ ├── Minimap.java │ │ │ │ ├── PseudoGrey.java │ │ │ │ ├── UserControlledShooter.java │ │ │ │ └── package-info.java │ │ └── editor │ │ │ ├── AbstractPlacableTable.java │ │ │ ├── BlockDrawable.java │ │ │ ├── BlockTable.java │ │ │ ├── CursorInfo.java │ │ │ ├── EditorToggler.java │ │ │ ├── EditorView.java │ │ │ ├── EntityDrawable.java │ │ │ ├── EntityTable.java │ │ │ ├── Navigation.java │ │ │ ├── PlacableItem.java │ │ │ ├── Tool.java │ │ │ └── Toolbar.java │ └── resources │ │ └── com │ │ └── bombinggames │ │ └── wurfelengine │ │ ├── core │ │ ├── arial.fnt │ │ ├── arial.png │ │ ├── fragment.fs │ │ ├── fragment_DP.fs │ │ ├── fragment_NM.fs │ │ ├── images │ │ │ ├── cursor.png │ │ │ ├── cursor_drag.png │ │ │ ├── spritesheet.def │ │ │ ├── spritesheet.png │ │ │ ├── spritesheet.txt │ │ │ └── wecursor.png │ │ ├── loading │ │ │ ├── loading.png │ │ │ └── loading.txt │ │ ├── skin │ │ │ ├── default.fnt │ │ │ ├── gui.png │ │ │ ├── gui.txt │ │ │ ├── uiskin.atlas │ │ │ ├── uiskin.json │ │ │ └── uiskin.png │ │ └── vertex.vs │ │ ├── extension │ │ └── basicmainmenu │ │ │ ├── Bombing Games Logo Big.png │ │ │ ├── Logo.png │ │ │ └── click2.wav │ │ ├── lettering.png │ │ └── soundengine │ │ └── sounds │ │ ├── Sources.txt │ │ ├── explosion2.wav │ │ ├── landing.wav │ │ ├── splash.wav │ │ ├── startup.mp3 │ │ └── wind.ogg │ └── test │ └── java │ └── com │ └── bombinggames │ └── wurfelengine │ └── core │ └── WorkingDirectoryTest.java ├── demogame ├── .gitignore ├── README.md ├── gnu-licence.txt ├── licence Weapon of Choice.txt ├── licence Wurfel Engine.txt ├── nbactions.xml ├── pom.xml ├── sprites │ ├── Spritesheet.tps │ ├── authors.txt │ ├── blocks │ │ ├── b0-0-0.png │ │ ├── b0-0-1.png │ │ ├── b0-0-2.png │ │ ├── b1-0-0.png │ │ ├── b1-0-1.png │ │ ├── b1-0-2.png │ │ ├── b2-0-0.png │ │ ├── b2-0-1.png │ │ ├── b2-0-2.png │ │ ├── b3-0-0.png │ │ ├── b3-0-1.png │ │ ├── b3-0-2.png │ │ ├── b34-0.png │ │ ├── b35-0.png │ │ ├── b71-0.png │ │ ├── b71-1.png │ │ ├── b8-0-0.png │ │ ├── b8-0-1.png │ │ ├── b8-0-2.png │ │ ├── b8-1-0.png │ │ ├── b8-1-1.png │ │ ├── b8-1-2.png │ │ ├── b9-0-0.png │ │ ├── b9-0-1.png │ │ └── b9-0-2.png │ ├── entities │ │ ├── e12-0.png │ │ ├── e12-1.png │ │ ├── e12-2.png │ │ ├── e12-3.png │ │ ├── e15-0.png │ │ ├── e16-0.png │ │ ├── e17-0.png │ │ ├── e18-0.png │ │ ├── e19-0.png │ │ ├── e21-0.png │ │ ├── e22-0.png │ │ ├── e3-0.png │ │ ├── e3-1.png │ │ ├── e3-2.png │ │ ├── e3-3.png │ │ ├── e3-4.png │ │ ├── e3-5.png │ │ ├── e3-6.png │ │ ├── e3-7.png │ │ ├── e3-8.png │ │ ├── e30-0.png │ │ ├── e30-1.png │ │ ├── e30-2.png │ │ ├── e30-3.png │ │ ├── e30-4.png │ │ ├── e30-5.png │ │ ├── e30-6.png │ │ ├── e30-7.png │ │ ├── e31-0.png │ │ ├── e31-1.png │ │ ├── e44-0.png │ │ ├── e44-1.png │ │ ├── e44-10.png │ │ ├── e44-11.png │ │ ├── e44-12.png │ │ ├── e44-13.png │ │ ├── e44-14.png │ │ ├── e44-15.png │ │ ├── e44-2.png │ │ ├── e44-3.png │ │ ├── e44-4.png │ │ ├── e44-5.png │ │ ├── e44-6.png │ │ ├── e44-7.png │ │ ├── e44-8.png │ │ ├── e44-9.png │ │ ├── e6-0.png │ │ ├── e60-0.png │ │ ├── e61-0.png │ │ ├── e8-0.png │ │ ├── e9-0.png │ │ ├── e9-1.png │ │ └── error.png │ ├── interface │ │ ├── i10-0.png │ │ ├── i11- 4.png │ │ ├── i11- 5.png │ │ ├── i11- 6.png │ │ ├── i11- 7.png │ │ ├── i11-0.png │ │ ├── i11-1.png │ │ ├── i11-2.png │ │ ├── i11-3.png │ │ ├── i12-0.png │ │ ├── i13.png │ │ └── i14-0.png │ ├── katana.pxi │ └── viech.pxm └── src │ └── main │ ├── java │ └── com │ │ └── bombinggames │ │ └── weaponofchoice │ │ ├── ArenaGenerator.java │ │ ├── CustomGameController.java │ │ ├── CustomGameView.java │ │ ├── CustomWeapon.java │ │ ├── Enemy.java │ │ ├── EnemyAI.java │ │ ├── Player.java │ │ ├── SpinningWheel.java │ │ ├── WeaponOfChoice.java │ │ └── mainmenu │ │ ├── Controller.java │ │ ├── CustomLoading.java │ │ ├── MainMenuScreen.java │ │ ├── MenuItem.java │ │ └── View.java │ └── resources │ └── com │ └── bombinggames │ └── weaponofchoice │ ├── SpritesBig.png │ ├── SpritesBig.txt │ ├── mainmenu │ ├── click2.wav │ └── images │ │ ├── Bombing Games Logo Big.png │ │ ├── Exit.png │ │ ├── Lettering.png │ │ ├── Logo.png │ │ ├── MainMenu.png │ │ ├── MainMenu.tps │ │ ├── MainMenu.txt │ │ └── Play.png │ ├── sounds │ ├── bust.wav │ ├── dead.ogg │ ├── dudeldi.ogg │ ├── fire.wav │ ├── impactFlesh.wav │ ├── melee.wav │ ├── music.ogg │ ├── poop.wav │ ├── punch.wav │ ├── reload.wav │ ├── scream1.WAV │ ├── scream2.WAV │ ├── scream3.WAV │ ├── scream4.WAV │ ├── shot.wav │ ├── shotgun.wav │ ├── thump.wav │ └── wiz.wav │ └── sprites │ ├── Spritesheet.png │ └── Spritesheet.txt ├── docs ├── allclasses-frame.html ├── allclasses-noframe.html ├── com │ └── bombinggames │ │ └── wurfelengine │ │ ├── Command.html │ │ ├── DesktopLauncher.html │ │ ├── LaunchCommand.html │ │ ├── WE.html │ │ ├── class-use │ │ ├── Command.html │ │ ├── DesktopLauncher.html │ │ ├── LaunchCommand.html │ │ └── WE.html │ │ ├── core │ │ ├── AbstractMainMenu.html │ │ ├── Camera.html │ │ ├── Controller.html │ │ ├── DepthListNode.DepthListIterator.html │ │ ├── DepthListNode.ReverseDepthListIterator.html │ │ ├── DepthListNode.html │ │ ├── DevTools.html │ │ ├── EngineView.html │ │ ├── Events.html │ │ ├── GameManager.html │ │ ├── GameView.html │ │ ├── GameplayScreen.html │ │ ├── WEScreen.html │ │ ├── WorkingDirectory.OS.html │ │ ├── WorkingDirectory.html │ │ ├── class-use │ │ │ ├── AbstractMainMenu.html │ │ │ ├── Camera.html │ │ │ ├── Controller.html │ │ │ ├── DepthListNode.DepthListIterator.html │ │ │ ├── DepthListNode.ReverseDepthListIterator.html │ │ │ ├── DepthListNode.html │ │ │ ├── DevTools.html │ │ │ ├── EngineView.html │ │ │ ├── Events.html │ │ │ ├── GameManager.html │ │ │ ├── GameView.html │ │ │ ├── GameplayScreen.html │ │ │ ├── WEScreen.html │ │ │ ├── WorkingDirectory.OS.html │ │ │ └── WorkingDirectory.html │ │ ├── console │ │ │ ├── BenchmarkCommand.html │ │ │ ├── CdCommand.html │ │ │ ├── ClearCommand.html │ │ │ ├── Console.html │ │ │ ├── ConsoleCommand.html │ │ │ ├── CreditsCommand.html │ │ │ ├── EditorCommand.html │ │ │ ├── ExitCommand.html │ │ │ ├── FillWithAirCommand.html │ │ │ ├── FullscreenCommand.html │ │ │ ├── KillallCommand.html │ │ │ ├── LECommand.html │ │ │ ├── LoadMapCommand.html │ │ │ ├── LsCommand.html │ │ │ ├── ManCommand.html │ │ │ ├── MenuCommand.html │ │ │ ├── PrintmapCommand.html │ │ │ ├── ReloadShadersCommand.html │ │ │ ├── SaveCommand.html │ │ │ ├── ScreenshakeCommand.html │ │ │ ├── TeleportCommand.html │ │ │ ├── class-use │ │ │ │ ├── BenchmarkCommand.html │ │ │ │ ├── CdCommand.html │ │ │ │ ├── ClearCommand.html │ │ │ │ ├── Console.html │ │ │ │ ├── ConsoleCommand.html │ │ │ │ ├── CreditsCommand.html │ │ │ │ ├── EditorCommand.html │ │ │ │ ├── ExitCommand.html │ │ │ │ ├── FillWithAirCommand.html │ │ │ │ ├── FullscreenCommand.html │ │ │ │ ├── KillallCommand.html │ │ │ │ ├── LECommand.html │ │ │ │ ├── LoadMapCommand.html │ │ │ │ ├── LsCommand.html │ │ │ │ ├── ManCommand.html │ │ │ │ ├── MenuCommand.html │ │ │ │ ├── PrintmapCommand.html │ │ │ │ ├── ReloadShadersCommand.html │ │ │ │ ├── SaveCommand.html │ │ │ │ ├── ScreenshakeCommand.html │ │ │ │ └── TeleportCommand.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ └── package-use.html │ │ ├── cvar │ │ │ ├── AbstractCVarSystem.html │ │ │ ├── BooleanCVar.html │ │ │ ├── CVar.html │ │ │ ├── CVarFlags.html │ │ │ ├── CVarSystemMap.html │ │ │ ├── CVarSystemRoot.html │ │ │ ├── CVarSystemSave.html │ │ │ ├── FloatCVar.html │ │ │ ├── IntCVar.html │ │ │ ├── StringCVar.html │ │ │ ├── class-use │ │ │ │ ├── AbstractCVarSystem.html │ │ │ │ ├── BooleanCVar.html │ │ │ │ ├── CVar.html │ │ │ │ ├── CVarFlags.html │ │ │ │ ├── CVarSystemMap.html │ │ │ │ ├── CVarSystemRoot.html │ │ │ │ ├── CVarSystemSave.html │ │ │ │ ├── FloatCVar.html │ │ │ │ ├── IntCVar.html │ │ │ │ └── StringCVar.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ └── package-use.html │ │ ├── gameobjects │ │ │ ├── AbstractEntity.html │ │ │ ├── AbstractGameObject.html │ │ │ ├── Animatable.html │ │ │ ├── BenchmarkBall.html │ │ │ ├── Component.html │ │ │ ├── Controllable.html │ │ │ ├── Cursor.html │ │ │ ├── DestructionParticle.html │ │ │ ├── EntityAnimation.html │ │ │ ├── EntityBlock.html │ │ │ ├── EntityShadow.html │ │ │ ├── Explosion.html │ │ │ ├── MovableEntity.html │ │ │ ├── MoveToAi.html │ │ │ ├── Particle.html │ │ │ ├── ParticleEmitter.html │ │ │ ├── ParticleType.html │ │ │ ├── PointLightSource.html │ │ │ ├── Side.html │ │ │ ├── SimpleEntity.html │ │ │ ├── class-use │ │ │ │ ├── AbstractEntity.html │ │ │ │ ├── AbstractGameObject.html │ │ │ │ ├── Animatable.html │ │ │ │ ├── BenchmarkBall.html │ │ │ │ ├── Component.html │ │ │ │ ├── Controllable.html │ │ │ │ ├── Cursor.html │ │ │ │ ├── DestructionParticle.html │ │ │ │ ├── EntityAnimation.html │ │ │ │ ├── EntityBlock.html │ │ │ │ ├── EntityShadow.html │ │ │ │ ├── Explosion.html │ │ │ │ ├── MovableEntity.html │ │ │ │ ├── MoveToAi.html │ │ │ │ ├── Particle.html │ │ │ │ ├── ParticleEmitter.html │ │ │ │ ├── ParticleType.html │ │ │ │ ├── PointLightSource.html │ │ │ │ ├── Side.html │ │ │ │ └── SimpleEntity.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ └── package-use.html │ │ ├── lightengine │ │ │ ├── AmbientOcclusionCalculator.html │ │ │ ├── GlobalLightSource.html │ │ │ ├── LightEngine.html │ │ │ ├── Moon.html │ │ │ ├── class-use │ │ │ │ ├── AmbientOcclusionCalculator.html │ │ │ │ ├── GlobalLightSource.html │ │ │ │ ├── LightEngine.html │ │ │ │ └── Moon.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ └── package-use.html │ │ ├── loading │ │ │ ├── LoadingBar.html │ │ │ ├── LoadingScreen.html │ │ │ ├── class-use │ │ │ │ ├── LoadingBar.html │ │ │ │ └── LoadingScreen.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ └── package-use.html │ │ ├── map │ │ │ ├── AbstractBlockLogicExtension.html │ │ │ ├── BlockConfig.html │ │ │ ├── Chunk.html │ │ │ ├── ChunkLoader.html │ │ │ ├── CoordConnection.html │ │ │ ├── Coordinate.html │ │ │ ├── CustomMapCVarRegistration.html │ │ │ ├── Generator.html │ │ │ ├── Generators │ │ │ │ ├── AirGenerator.html │ │ │ │ ├── BlockTestGenerator.html │ │ │ │ ├── FullMapGenerator.html │ │ │ │ ├── IslandGenerator.html │ │ │ │ ├── class-use │ │ │ │ │ ├── AirGenerator.html │ │ │ │ │ ├── BlockTestGenerator.html │ │ │ │ │ ├── FullMapGenerator.html │ │ │ │ │ └── IslandGenerator.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── package-use.html │ │ │ ├── Intersection.html │ │ │ ├── Iterators │ │ │ │ ├── CoveredByCameraIterator.html │ │ │ │ ├── DataIterator3D.html │ │ │ │ ├── class-use │ │ │ │ │ ├── CoveredByCameraIterator.html │ │ │ │ │ └── DataIterator3D.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── package-use.html │ │ │ ├── LoadMenu.html │ │ │ ├── Map.html │ │ │ ├── MapButton.html │ │ │ ├── PfNode.html │ │ │ ├── Point.html │ │ │ ├── Position.html │ │ │ ├── class-use │ │ │ │ ├── AbstractBlockLogicExtension.html │ │ │ │ ├── BlockConfig.html │ │ │ │ ├── Chunk.html │ │ │ │ ├── ChunkLoader.html │ │ │ │ ├── CoordConnection.html │ │ │ │ ├── Coordinate.html │ │ │ │ ├── CustomMapCVarRegistration.html │ │ │ │ ├── Generator.html │ │ │ │ ├── Intersection.html │ │ │ │ ├── LoadMenu.html │ │ │ │ ├── Map.html │ │ │ │ ├── MapButton.html │ │ │ │ ├── PfNode.html │ │ │ │ ├── Point.html │ │ │ │ └── Position.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ ├── package-use.html │ │ │ └── rendering │ │ │ │ ├── AnimatedBlock.html │ │ │ │ ├── GameSpaceSprite.html │ │ │ │ ├── RenderCell.Channel.html │ │ │ │ ├── RenderCell.html │ │ │ │ ├── RenderChunk.html │ │ │ │ ├── RenderStorage.html │ │ │ │ ├── Sea.html │ │ │ │ ├── SpriteBatchWithZAxis.html │ │ │ │ ├── class-use │ │ │ │ ├── AnimatedBlock.html │ │ │ │ ├── GameSpaceSprite.html │ │ │ │ ├── RenderCell.Channel.html │ │ │ │ ├── RenderCell.html │ │ │ │ ├── RenderChunk.html │ │ │ │ ├── RenderStorage.html │ │ │ │ ├── Sea.html │ │ │ │ └── SpriteBatchWithZAxis.html │ │ │ │ ├── package-frame.html │ │ │ │ ├── package-summary.html │ │ │ │ ├── package-tree.html │ │ │ │ └── package-use.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ ├── package-tree.html │ │ ├── package-use.html │ │ └── sorting │ │ │ ├── AbstractSorter.html │ │ │ ├── DepthValueSort.html │ │ │ ├── NoSort.html │ │ │ ├── TopoGraphNode.html │ │ │ ├── TopologicalSort.html │ │ │ ├── class-use │ │ │ ├── AbstractSorter.html │ │ │ ├── DepthValueSort.html │ │ │ ├── NoSort.html │ │ │ ├── TopoGraphNode.html │ │ │ └── TopologicalSort.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ └── package-use.html │ │ ├── extension │ │ ├── AimBand.html │ │ ├── Benchmark.html │ │ ├── MiniMapChunkDebug.html │ │ ├── Minimap.html │ │ ├── PseudoGrey.html │ │ ├── UserControlledShooter.html │ │ ├── basicmainmenu │ │ │ ├── BasicMainMenu.html │ │ │ ├── BasicMenuItem.html │ │ │ ├── GameViewWithCamera.html │ │ │ ├── MenuController.html │ │ │ ├── MenuView.html │ │ │ ├── class-use │ │ │ │ ├── BasicMainMenu.html │ │ │ │ ├── BasicMenuItem.html │ │ │ │ ├── GameViewWithCamera.html │ │ │ │ ├── MenuController.html │ │ │ │ └── MenuView.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ └── package-use.html │ │ ├── class-use │ │ │ ├── AimBand.html │ │ │ ├── Benchmark.html │ │ │ ├── MiniMapChunkDebug.html │ │ │ ├── Minimap.html │ │ │ ├── PseudoGrey.html │ │ │ └── UserControlledShooter.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ ├── package-tree.html │ │ ├── package-use.html │ │ └── shooting │ │ │ ├── Bullet.html │ │ │ ├── Laserdot.html │ │ │ ├── Weapon.html │ │ │ ├── class-use │ │ │ ├── Bullet.html │ │ │ ├── Laserdot.html │ │ │ └── Weapon.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ ├── package-tree.html │ │ │ └── package-use.html │ │ ├── mapeditor │ │ ├── AbstractPlacableTable.html │ │ ├── BlockDrawable.html │ │ ├── BlockTable.html │ │ ├── CursorInfo.html │ │ ├── EditorToggler.html │ │ ├── EditorView.html │ │ ├── EntityDrawable.html │ │ ├── EntityTable.html │ │ ├── Navigation.html │ │ ├── PlacableItem.html │ │ ├── Tool.html │ │ ├── Toolbar.html │ │ ├── class-use │ │ │ ├── AbstractPlacableTable.html │ │ │ ├── BlockDrawable.html │ │ │ ├── BlockTable.html │ │ │ ├── CursorInfo.html │ │ │ ├── EditorToggler.html │ │ │ ├── EditorView.html │ │ │ ├── EntityDrawable.html │ │ │ ├── EntityTable.html │ │ │ ├── Navigation.html │ │ │ ├── PlacableItem.html │ │ │ ├── Tool.html │ │ │ └── Toolbar.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ ├── package-tree.html │ │ └── package-use.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ ├── package-tree.html │ │ ├── package-use.html │ │ └── soundengine │ │ ├── SoundEngine.html │ │ ├── class-use │ │ └── SoundEngine.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ ├── package-tree.html │ │ └── package-use.html ├── constant-values.html ├── deprecated-list.html ├── help-doc.html ├── index-files │ ├── index-1.html │ ├── index-10.html │ ├── index-11.html │ ├── index-12.html │ ├── index-13.html │ ├── index-14.html │ ├── index-15.html │ ├── index-16.html │ ├── index-17.html │ ├── index-18.html │ ├── index-19.html │ ├── index-2.html │ ├── index-20.html │ ├── index-21.html │ ├── index-22.html │ ├── index-23.html │ ├── index-24.html │ ├── index-25.html │ ├── index-3.html │ ├── index-4.html │ ├── index-5.html │ ├── index-6.html │ ├── index-7.html │ ├── index-8.html │ └── index-9.html ├── index.html ├── jquery │ ├── external │ │ └── jquery │ │ │ └── jquery.js │ ├── images │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ ├── jquery-1.10.2.js │ ├── jquery-ui.css │ ├── jquery-ui.js │ ├── jquery-ui.min.css │ ├── jquery-ui.min.js │ ├── jquery-ui.structure.css │ ├── jquery-ui.structure.min.css │ ├── jszip-utils │ │ └── dist │ │ │ ├── jszip-utils-ie.js │ │ │ ├── jszip-utils-ie.min.js │ │ │ ├── jszip-utils.js │ │ │ └── jszip-utils.min.js │ └── jszip │ │ └── dist │ │ ├── jszip.js │ │ └── jszip.min.js ├── member-search-index.js ├── member-search-index.zip ├── overview-frame.html ├── overview-summary.html ├── overview-tree.html ├── package-list ├── package-search-index.js ├── package-search-index.zip ├── resources │ ├── glass.png │ └── x.png ├── script.js ├── search.js ├── serialized-form.html ├── stylesheet.css ├── type-search-index.js └── type-search-index.zip ├── license.txt ├── sprites ├── game objects │ ├── Spritesheet mc.tps │ ├── Spritesheet.tps │ ├── blocks │ │ ├── b0-0-0.png │ │ ├── b0-0-1.png │ │ ├── b0-0-2.png │ │ ├── b1-0-0.png │ │ ├── b1-0-1.png │ │ ├── b1-0-2.png │ │ ├── b2-0-0.png │ │ ├── b2-0-1.png │ │ ├── b2-0-2.png │ │ ├── b3-0-0.png │ │ ├── b3-0-1.png │ │ ├── b3-0-2.png │ │ ├── b34-0.png │ │ ├── b35-0.png │ │ ├── b71-0.png │ │ ├── b71-1.png │ │ ├── b8-0-0.png │ │ ├── b8-0-1.png │ │ ├── b8-0-2.png │ │ ├── b9-0-0.png │ │ ├── b9-0-1.png │ │ └── b9-0-2.png │ ├── entities │ │ ├── e12-0.png │ │ ├── e12-1.png │ │ ├── e12-2.png │ │ ├── e12-3.png │ │ ├── e15-0.png │ │ ├── e16-0.png │ │ ├── e17-0.png │ │ ├── e18-0.png │ │ ├── e19-0.png │ │ ├── e20-0.png │ │ ├── e3-0.png │ │ ├── e3-1.png │ │ ├── e3-2.png │ │ ├── e3-3.png │ │ ├── e3-4.png │ │ ├── e3-5.png │ │ ├── e3-6.png │ │ ├── e3-7.png │ │ ├── e3-8.png │ │ ├── e30-0.png │ │ ├── e30-1.png │ │ ├── e30-2.png │ │ ├── e30-3.png │ │ ├── e30-4.png │ │ ├── e30-5.png │ │ ├── e30-6.png │ │ ├── e30-7.png │ │ ├── e31-0.png │ │ ├── e31-1.png │ │ ├── e5-0.png │ │ ├── e6-0.png │ │ ├── e8-0.png │ │ ├── e9-0.png │ │ ├── e9-1.png │ │ └── error.png │ ├── interface │ │ └── i10-0.png │ ├── mcblocks │ │ ├── b0-0-0.png │ │ ├── b0-0-1.png │ │ ├── b0-0-2.png │ │ ├── b1-0-0.png │ │ ├── b1-0-1.png │ │ ├── b1-0-2.png │ │ ├── b2-0-0.png │ │ ├── b2-0-1.png │ │ ├── b2-0-2.png │ │ ├── b3-0-0.png │ │ ├── b3-0-1.png │ │ ├── b3-0-2.png │ │ ├── b8-0-0.png │ │ ├── b8-0-1.png │ │ ├── b8-0-2.png │ │ ├── b9-0-0.png │ │ ├── b9-0-1.png │ │ └── b9-0-2.png │ └── mcsprites │ │ ├── b0-0-0.png │ │ ├── b0-0-1.png │ │ ├── b0-0-2.png │ │ ├── b1-0-0.png │ │ ├── b1-0-1.png │ │ ├── b1-0-2.png │ │ ├── b17-0-0.png │ │ ├── b17-0-1.png │ │ ├── b17-0-2.png │ │ ├── b18-0-0.png │ │ ├── b18-0-1.png │ │ ├── b18-0-2.png │ │ ├── b2-0-0.png │ │ ├── b2-0-1.png │ │ ├── b2-0-2.png │ │ ├── b20-0-0.png │ │ ├── b20-0-1.png │ │ ├── b20-0-2.png │ │ ├── b21-0-0.png │ │ ├── b21-0-1.png │ │ ├── b21-0-2.png │ │ ├── b3-0-0.png │ │ ├── b3-0-1.png │ │ ├── b3-0-2.png │ │ ├── b34-0.png │ │ ├── b35-0.png │ │ ├── b4-0-0.png │ │ ├── b4-0-1.png │ │ ├── b4-0-2.png │ │ ├── b44-0-0.png │ │ ├── b44-0-1.png │ │ ├── b44-0-2.png │ │ ├── b44-1-0.png │ │ ├── b44-1-1.png │ │ ├── b44-1-2.png │ │ ├── b5-0-0.png │ │ ├── b5-0-1.png │ │ ├── b5-0-2.png │ │ ├── b6-0-0.png │ │ ├── b6-0-1.png │ │ ├── b6-0-2.png │ │ ├── b7-0-0.png │ │ ├── b7-0-1.png │ │ ├── b7-0-2.png │ │ ├── b70-0.png │ │ ├── b71-0-0.png │ │ ├── b71-0-1.png │ │ ├── b71-0-2.png │ │ ├── b71-0.png │ │ ├── b71-1.png │ │ ├── b8-0-0.png │ │ ├── b8-0-1.png │ │ ├── b8-0-2.png │ │ ├── b9-0-0.png │ │ ├── b9-0-1.png │ │ ├── b9-0-2.png │ │ ├── b9-1-0.png │ │ ├── b9-1-1.png │ │ ├── b9-1-2.png │ │ ├── b9-2-0.png │ │ ├── b9-2-1.png │ │ ├── b9-2-2.png │ │ ├── e13-0.png │ │ ├── e40-0.png │ │ ├── e40-1.png │ │ ├── e40-10.png │ │ ├── e40-11.png │ │ ├── e40-12.png │ │ ├── e40-13.png │ │ ├── e40-14.png │ │ ├── e40-15.png │ │ ├── e40-16.png │ │ ├── e40-17.png │ │ ├── e40-18.png │ │ ├── e40-19.png │ │ ├── e40-2.png │ │ ├── e40-20.png │ │ ├── e40-21.png │ │ ├── e40-22.png │ │ ├── e40-23.png │ │ ├── e40-3.png │ │ ├── e40-4.png │ │ ├── e40-5.png │ │ ├── e40-6.png │ │ ├── e40-7.png │ │ ├── e40-8.png │ │ ├── e40-9.png │ │ ├── e41-0.png │ │ ├── e41-1.png │ │ ├── e42-0.png │ │ ├── error.png │ │ ├── selection.png │ │ └── toolbar.png ├── license.txt ├── loading │ ├── banner_medium.png │ ├── loading-bar-hidden.png │ ├── loading-frame-bg.png │ ├── loading-frame.png │ ├── loading.tps │ ├── loading_bar1.png │ ├── loading_bar2.png │ ├── loading_bar3.png │ └── screen-bg.png └── skin │ ├── bucket_button.png │ ├── draw_button.png │ ├── entity_button.png │ ├── eraser_button.png │ ├── gui.tps │ ├── load_button.png │ ├── pause_button.png │ ├── play_button.png │ ├── play_button.pxm │ ├── pointer_button.png │ ├── replace_button.png │ ├── reset_button.png │ ├── save_button.png │ └── stop_button.png └── tools └── WurfelEngine.atn /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/.project -------------------------------------------------------------------------------- /Logos/Logo Big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/Logos/Logo Big.png -------------------------------------------------------------------------------- /Logos/Wurfel Engine Banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/Logos/Wurfel Engine Banner.png -------------------------------------------------------------------------------- /Logos/Wurfel Engine Poster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/Logos/Wurfel Engine Poster.png -------------------------------------------------------------------------------- /Logos/background big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/Logos/background big.png -------------------------------------------------------------------------------- /Logos/bg_gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/Logos/bg_gray.png -------------------------------------------------------------------------------- /MinecraftToWurfelEngine/nbactions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/MinecraftToWurfelEngine/nbactions.xml -------------------------------------------------------------------------------- /MinecraftToWurfelEngine/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/MinecraftToWurfelEngine/pom.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/README.md -------------------------------------------------------------------------------- /UML Class Diagramm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/UML Class Diagramm.pdf -------------------------------------------------------------------------------- /WurfelEngineWithDependencies.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/WurfelEngineWithDependencies.jar -------------------------------------------------------------------------------- /core/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/.gitignore -------------------------------------------------------------------------------- /core/nb-configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/nb-configuration.xml -------------------------------------------------------------------------------- /core/nbactions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/nbactions.xml -------------------------------------------------------------------------------- /core/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/pom.xml -------------------------------------------------------------------------------- /core/src/changes/changes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/changes/changes.xml -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/Command.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/Command.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/DesktopLauncher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/DesktopLauncher.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/LaunchCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/LaunchCommand.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/WE.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/WE.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/WurfelEngineIntro.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/WurfelEngineIntro.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/AbstractMainMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/AbstractMainMenu.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/Camera.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/Camera.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/Controller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/Controller.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/DepthListNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/DepthListNode.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/DevTools.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/DevTools.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/EngineView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/EngineView.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/Events.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/Events.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/GameManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/GameManager.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/GameView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/GameView.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/GameplayScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/GameplayScreen.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/WEScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/WEScreen.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/WorkingDirectory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/WorkingDirectory.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/console/CdCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/console/CdCommand.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/console/Console.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/console/Console.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/console/LECommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/console/LECommand.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/console/LsCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/console/LsCommand.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/cvar/BooleanCVar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/cvar/BooleanCVar.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/cvar/CVar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/cvar/CVar.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/cvar/CVarFlags.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/cvar/CVarFlags.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/cvar/FloatCVar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/cvar/FloatCVar.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/cvar/IntCVar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/cvar/IntCVar.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/cvar/StringCVar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/cvar/StringCVar.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/gameobjects/Side.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/gameobjects/Side.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/lightengine/Moon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/lightengine/Moon.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/map/BlockConfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/map/BlockConfig.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/map/Chunk.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/map/Chunk.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/map/ChunkLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/map/ChunkLoader.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/map/Coordinate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/map/Coordinate.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/map/Generator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/map/Generator.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/map/Intersection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/map/Intersection.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/map/LoadMenu.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/map/LoadMenu.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/map/Map.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/map/Map.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/map/MapButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/map/MapButton.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/map/PfNode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/map/PfNode.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/map/Point.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/map/Point.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/map/Position.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/map/Position.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/map/rendering/Sea.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/map/rendering/Sea.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/core/sorting/NoSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/core/sorting/NoSort.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/sound/SoundEngine.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/sound/SoundEngine.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/sound/SoundInstance.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/sound/SoundInstance.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/utilities/AimBand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/utilities/AimBand.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/utilities/Benchmark.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/utilities/Benchmark.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/utilities/Minimap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/utilities/Minimap.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/utilities/PseudoGrey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/utilities/PseudoGrey.java -------------------------------------------------------------------------------- /core/src/main/java/com/bombinggames/wurfelengine/utilities/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/com/bombinggames/wurfelengine/utilities/package-info.java -------------------------------------------------------------------------------- /core/src/main/java/editor/AbstractPlacableTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/editor/AbstractPlacableTable.java -------------------------------------------------------------------------------- /core/src/main/java/editor/BlockDrawable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/editor/BlockDrawable.java -------------------------------------------------------------------------------- /core/src/main/java/editor/BlockTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/editor/BlockTable.java -------------------------------------------------------------------------------- /core/src/main/java/editor/CursorInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/editor/CursorInfo.java -------------------------------------------------------------------------------- /core/src/main/java/editor/EditorToggler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/editor/EditorToggler.java -------------------------------------------------------------------------------- /core/src/main/java/editor/EditorView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/editor/EditorView.java -------------------------------------------------------------------------------- /core/src/main/java/editor/EntityDrawable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/editor/EntityDrawable.java -------------------------------------------------------------------------------- /core/src/main/java/editor/EntityTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/editor/EntityTable.java -------------------------------------------------------------------------------- /core/src/main/java/editor/Navigation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/editor/Navigation.java -------------------------------------------------------------------------------- /core/src/main/java/editor/PlacableItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/editor/PlacableItem.java -------------------------------------------------------------------------------- /core/src/main/java/editor/Tool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/editor/Tool.java -------------------------------------------------------------------------------- /core/src/main/java/editor/Toolbar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/java/editor/Toolbar.java -------------------------------------------------------------------------------- /core/src/main/resources/com/bombinggames/wurfelengine/core/arial.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/resources/com/bombinggames/wurfelengine/core/arial.fnt -------------------------------------------------------------------------------- /core/src/main/resources/com/bombinggames/wurfelengine/core/arial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/resources/com/bombinggames/wurfelengine/core/arial.png -------------------------------------------------------------------------------- /core/src/main/resources/com/bombinggames/wurfelengine/core/fragment.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/resources/com/bombinggames/wurfelengine/core/fragment.fs -------------------------------------------------------------------------------- /core/src/main/resources/com/bombinggames/wurfelengine/core/fragment_DP.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/resources/com/bombinggames/wurfelengine/core/fragment_DP.fs -------------------------------------------------------------------------------- /core/src/main/resources/com/bombinggames/wurfelengine/core/fragment_NM.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/resources/com/bombinggames/wurfelengine/core/fragment_NM.fs -------------------------------------------------------------------------------- /core/src/main/resources/com/bombinggames/wurfelengine/core/images/cursor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/resources/com/bombinggames/wurfelengine/core/images/cursor.png -------------------------------------------------------------------------------- /core/src/main/resources/com/bombinggames/wurfelengine/core/skin/default.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/resources/com/bombinggames/wurfelengine/core/skin/default.fnt -------------------------------------------------------------------------------- /core/src/main/resources/com/bombinggames/wurfelengine/core/skin/gui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/resources/com/bombinggames/wurfelengine/core/skin/gui.png -------------------------------------------------------------------------------- /core/src/main/resources/com/bombinggames/wurfelengine/core/skin/gui.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/resources/com/bombinggames/wurfelengine/core/skin/gui.txt -------------------------------------------------------------------------------- /core/src/main/resources/com/bombinggames/wurfelengine/core/skin/uiskin.atlas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/resources/com/bombinggames/wurfelengine/core/skin/uiskin.atlas -------------------------------------------------------------------------------- /core/src/main/resources/com/bombinggames/wurfelengine/core/skin/uiskin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/resources/com/bombinggames/wurfelengine/core/skin/uiskin.json -------------------------------------------------------------------------------- /core/src/main/resources/com/bombinggames/wurfelengine/core/skin/uiskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/resources/com/bombinggames/wurfelengine/core/skin/uiskin.png -------------------------------------------------------------------------------- /core/src/main/resources/com/bombinggames/wurfelengine/core/vertex.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/resources/com/bombinggames/wurfelengine/core/vertex.vs -------------------------------------------------------------------------------- /core/src/main/resources/com/bombinggames/wurfelengine/lettering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/core/src/main/resources/com/bombinggames/wurfelengine/lettering.png -------------------------------------------------------------------------------- /demogame/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | target/* 3 | -------------------------------------------------------------------------------- /demogame/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/README.md -------------------------------------------------------------------------------- /demogame/gnu-licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/gnu-licence.txt -------------------------------------------------------------------------------- /demogame/licence Weapon of Choice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/licence Weapon of Choice.txt -------------------------------------------------------------------------------- /demogame/licence Wurfel Engine.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/licence Wurfel Engine.txt -------------------------------------------------------------------------------- /demogame/nbactions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/nbactions.xml -------------------------------------------------------------------------------- /demogame/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/pom.xml -------------------------------------------------------------------------------- /demogame/sprites/Spritesheet.tps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/Spritesheet.tps -------------------------------------------------------------------------------- /demogame/sprites/authors.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/authors.txt -------------------------------------------------------------------------------- /demogame/sprites/blocks/b0-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/blocks/b0-0-0.png -------------------------------------------------------------------------------- /demogame/sprites/blocks/b0-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/blocks/b0-0-1.png -------------------------------------------------------------------------------- /demogame/sprites/blocks/b0-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/blocks/b0-0-2.png -------------------------------------------------------------------------------- /demogame/sprites/blocks/b1-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/blocks/b1-0-0.png -------------------------------------------------------------------------------- /demogame/sprites/blocks/b1-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/blocks/b1-0-1.png -------------------------------------------------------------------------------- /demogame/sprites/blocks/b1-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/blocks/b1-0-2.png -------------------------------------------------------------------------------- /demogame/sprites/blocks/b2-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/blocks/b2-0-0.png -------------------------------------------------------------------------------- /demogame/sprites/blocks/b2-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/blocks/b2-0-1.png -------------------------------------------------------------------------------- /demogame/sprites/blocks/b2-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/blocks/b2-0-2.png -------------------------------------------------------------------------------- /demogame/sprites/blocks/b3-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/blocks/b3-0-0.png -------------------------------------------------------------------------------- /demogame/sprites/blocks/b3-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/blocks/b3-0-1.png -------------------------------------------------------------------------------- /demogame/sprites/blocks/b3-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/blocks/b3-0-2.png -------------------------------------------------------------------------------- /demogame/sprites/blocks/b34-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/blocks/b34-0.png -------------------------------------------------------------------------------- /demogame/sprites/blocks/b35-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/blocks/b35-0.png -------------------------------------------------------------------------------- /demogame/sprites/blocks/b71-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/blocks/b71-0.png -------------------------------------------------------------------------------- /demogame/sprites/blocks/b71-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/blocks/b71-1.png -------------------------------------------------------------------------------- /demogame/sprites/blocks/b8-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/blocks/b8-0-0.png -------------------------------------------------------------------------------- /demogame/sprites/blocks/b8-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/blocks/b8-0-1.png -------------------------------------------------------------------------------- /demogame/sprites/blocks/b8-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/blocks/b8-0-2.png -------------------------------------------------------------------------------- /demogame/sprites/blocks/b8-1-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/blocks/b8-1-0.png -------------------------------------------------------------------------------- /demogame/sprites/blocks/b8-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/blocks/b8-1-1.png -------------------------------------------------------------------------------- /demogame/sprites/blocks/b8-1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/blocks/b8-1-2.png -------------------------------------------------------------------------------- /demogame/sprites/blocks/b9-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/blocks/b9-0-0.png -------------------------------------------------------------------------------- /demogame/sprites/blocks/b9-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/blocks/b9-0-1.png -------------------------------------------------------------------------------- /demogame/sprites/blocks/b9-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/blocks/b9-0-2.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e12-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e12-0.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e12-1.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e12-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e12-2.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e12-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e12-3.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e15-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e15-0.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e16-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e16-0.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e17-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e17-0.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e18-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e18-0.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e19-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e19-0.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e21-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e21-0.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e22-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e22-0.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e3-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e3-0.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e3-1.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e3-2.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e3-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e3-3.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e3-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e3-4.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e3-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e3-5.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e3-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e3-6.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e3-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e3-7.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e3-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e3-8.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e30-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e30-0.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e30-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e30-1.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e30-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e30-2.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e30-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e30-3.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e30-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e30-4.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e30-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e30-5.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e30-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e30-6.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e30-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e30-7.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e31-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e31-0.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e31-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e31-1.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e44-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e44-0.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e44-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e44-1.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e44-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e44-10.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e44-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e44-11.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e44-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e44-12.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e44-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e44-13.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e44-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e44-14.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e44-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e44-15.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e44-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e44-2.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e44-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e44-3.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e44-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e44-4.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e44-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e44-5.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e44-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e44-6.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e44-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e44-7.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e44-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e44-8.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e44-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e44-9.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e6-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e6-0.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e60-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e60-0.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e61-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e61-0.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e8-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e8-0.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e9-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e9-0.png -------------------------------------------------------------------------------- /demogame/sprites/entities/e9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/e9-1.png -------------------------------------------------------------------------------- /demogame/sprites/entities/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/entities/error.png -------------------------------------------------------------------------------- /demogame/sprites/interface/i10-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/interface/i10-0.png -------------------------------------------------------------------------------- /demogame/sprites/interface/i11- 4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/interface/i11- 4.png -------------------------------------------------------------------------------- /demogame/sprites/interface/i11- 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/interface/i11- 5.png -------------------------------------------------------------------------------- /demogame/sprites/interface/i11- 6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/interface/i11- 6.png -------------------------------------------------------------------------------- /demogame/sprites/interface/i11- 7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/interface/i11- 7.png -------------------------------------------------------------------------------- /demogame/sprites/interface/i11-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/interface/i11-0.png -------------------------------------------------------------------------------- /demogame/sprites/interface/i11-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/interface/i11-1.png -------------------------------------------------------------------------------- /demogame/sprites/interface/i11-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/interface/i11-2.png -------------------------------------------------------------------------------- /demogame/sprites/interface/i11-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/interface/i11-3.png -------------------------------------------------------------------------------- /demogame/sprites/interface/i12-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/interface/i12-0.png -------------------------------------------------------------------------------- /demogame/sprites/interface/i13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/interface/i13.png -------------------------------------------------------------------------------- /demogame/sprites/interface/i14-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/interface/i14-0.png -------------------------------------------------------------------------------- /demogame/sprites/katana.pxi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/katana.pxi -------------------------------------------------------------------------------- /demogame/sprites/viech.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/sprites/viech.pxm -------------------------------------------------------------------------------- /demogame/src/main/java/com/bombinggames/weaponofchoice/ArenaGenerator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/src/main/java/com/bombinggames/weaponofchoice/ArenaGenerator.java -------------------------------------------------------------------------------- /demogame/src/main/java/com/bombinggames/weaponofchoice/CustomGameView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/src/main/java/com/bombinggames/weaponofchoice/CustomGameView.java -------------------------------------------------------------------------------- /demogame/src/main/java/com/bombinggames/weaponofchoice/CustomWeapon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/src/main/java/com/bombinggames/weaponofchoice/CustomWeapon.java -------------------------------------------------------------------------------- /demogame/src/main/java/com/bombinggames/weaponofchoice/Enemy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/src/main/java/com/bombinggames/weaponofchoice/Enemy.java -------------------------------------------------------------------------------- /demogame/src/main/java/com/bombinggames/weaponofchoice/EnemyAI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/src/main/java/com/bombinggames/weaponofchoice/EnemyAI.java -------------------------------------------------------------------------------- /demogame/src/main/java/com/bombinggames/weaponofchoice/Player.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/src/main/java/com/bombinggames/weaponofchoice/Player.java -------------------------------------------------------------------------------- /demogame/src/main/java/com/bombinggames/weaponofchoice/SpinningWheel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/src/main/java/com/bombinggames/weaponofchoice/SpinningWheel.java -------------------------------------------------------------------------------- /demogame/src/main/java/com/bombinggames/weaponofchoice/WeaponOfChoice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/src/main/java/com/bombinggames/weaponofchoice/WeaponOfChoice.java -------------------------------------------------------------------------------- /demogame/src/main/java/com/bombinggames/weaponofchoice/mainmenu/View.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/src/main/java/com/bombinggames/weaponofchoice/mainmenu/View.java -------------------------------------------------------------------------------- /demogame/src/main/resources/com/bombinggames/weaponofchoice/SpritesBig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/src/main/resources/com/bombinggames/weaponofchoice/SpritesBig.png -------------------------------------------------------------------------------- /demogame/src/main/resources/com/bombinggames/weaponofchoice/SpritesBig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/src/main/resources/com/bombinggames/weaponofchoice/SpritesBig.txt -------------------------------------------------------------------------------- /demogame/src/main/resources/com/bombinggames/weaponofchoice/sounds/bust.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/src/main/resources/com/bombinggames/weaponofchoice/sounds/bust.wav -------------------------------------------------------------------------------- /demogame/src/main/resources/com/bombinggames/weaponofchoice/sounds/dead.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/src/main/resources/com/bombinggames/weaponofchoice/sounds/dead.ogg -------------------------------------------------------------------------------- /demogame/src/main/resources/com/bombinggames/weaponofchoice/sounds/fire.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/src/main/resources/com/bombinggames/weaponofchoice/sounds/fire.wav -------------------------------------------------------------------------------- /demogame/src/main/resources/com/bombinggames/weaponofchoice/sounds/melee.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/src/main/resources/com/bombinggames/weaponofchoice/sounds/melee.wav -------------------------------------------------------------------------------- /demogame/src/main/resources/com/bombinggames/weaponofchoice/sounds/music.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/src/main/resources/com/bombinggames/weaponofchoice/sounds/music.ogg -------------------------------------------------------------------------------- /demogame/src/main/resources/com/bombinggames/weaponofchoice/sounds/poop.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/src/main/resources/com/bombinggames/weaponofchoice/sounds/poop.wav -------------------------------------------------------------------------------- /demogame/src/main/resources/com/bombinggames/weaponofchoice/sounds/punch.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/src/main/resources/com/bombinggames/weaponofchoice/sounds/punch.wav -------------------------------------------------------------------------------- /demogame/src/main/resources/com/bombinggames/weaponofchoice/sounds/shot.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/src/main/resources/com/bombinggames/weaponofchoice/sounds/shot.wav -------------------------------------------------------------------------------- /demogame/src/main/resources/com/bombinggames/weaponofchoice/sounds/thump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/src/main/resources/com/bombinggames/weaponofchoice/sounds/thump.wav -------------------------------------------------------------------------------- /demogame/src/main/resources/com/bombinggames/weaponofchoice/sounds/wiz.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/demogame/src/main/resources/com/bombinggames/weaponofchoice/sounds/wiz.wav -------------------------------------------------------------------------------- /docs/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/allclasses-frame.html -------------------------------------------------------------------------------- /docs/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/allclasses-noframe.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/Command.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/Command.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/DesktopLauncher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/DesktopLauncher.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/LaunchCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/LaunchCommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/WE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/WE.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/class-use/Command.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/class-use/Command.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/class-use/DesktopLauncher.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/class-use/DesktopLauncher.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/class-use/LaunchCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/class-use/LaunchCommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/class-use/WE.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/class-use/WE.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/AbstractMainMenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/AbstractMainMenu.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/Camera.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/Camera.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/Controller.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/Controller.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/DepthListNode.DepthListIterator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/DepthListNode.DepthListIterator.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/DepthListNode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/DepthListNode.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/DevTools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/DevTools.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/EngineView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/EngineView.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/Events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/Events.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/GameManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/GameManager.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/GameView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/GameView.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/GameplayScreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/GameplayScreen.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/WEScreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/WEScreen.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/WorkingDirectory.OS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/WorkingDirectory.OS.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/WorkingDirectory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/WorkingDirectory.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/class-use/AbstractMainMenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/class-use/AbstractMainMenu.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/class-use/Camera.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/class-use/Camera.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/class-use/Controller.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/class-use/Controller.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/class-use/DepthListNode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/class-use/DepthListNode.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/class-use/DevTools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/class-use/DevTools.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/class-use/EngineView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/class-use/EngineView.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/class-use/Events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/class-use/Events.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/class-use/GameManager.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/class-use/GameManager.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/class-use/GameView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/class-use/GameView.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/class-use/GameplayScreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/class-use/GameplayScreen.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/class-use/WEScreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/class-use/WEScreen.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/class-use/WorkingDirectory.OS.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/class-use/WorkingDirectory.OS.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/class-use/WorkingDirectory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/class-use/WorkingDirectory.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/BenchmarkCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/BenchmarkCommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/CdCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/CdCommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/ClearCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/ClearCommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/Console.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/Console.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/ConsoleCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/ConsoleCommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/CreditsCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/CreditsCommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/EditorCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/EditorCommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/ExitCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/ExitCommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/FillWithAirCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/FillWithAirCommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/FullscreenCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/FullscreenCommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/KillallCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/KillallCommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/LECommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/LECommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/LoadMapCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/LoadMapCommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/LsCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/LsCommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/ManCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/ManCommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/MenuCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/MenuCommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/PrintmapCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/PrintmapCommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/ReloadShadersCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/ReloadShadersCommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/SaveCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/SaveCommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/ScreenshakeCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/ScreenshakeCommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/TeleportCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/TeleportCommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/class-use/CdCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/class-use/CdCommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/class-use/ClearCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/class-use/ClearCommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/class-use/Console.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/class-use/Console.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/class-use/EditorCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/class-use/EditorCommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/class-use/ExitCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/class-use/ExitCommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/class-use/LECommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/class-use/LECommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/class-use/LsCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/class-use/LsCommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/class-use/ManCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/class-use/ManCommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/class-use/MenuCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/class-use/MenuCommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/class-use/SaveCommand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/class-use/SaveCommand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/package-frame.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/package-summary.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/package-tree.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/console/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/console/package-use.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/cvar/AbstractCVarSystem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/cvar/AbstractCVarSystem.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/cvar/BooleanCVar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/cvar/BooleanCVar.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/cvar/CVar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/cvar/CVar.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/cvar/CVarFlags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/cvar/CVarFlags.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/cvar/CVarSystemMap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/cvar/CVarSystemMap.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/cvar/CVarSystemRoot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/cvar/CVarSystemRoot.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/cvar/CVarSystemSave.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/cvar/CVarSystemSave.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/cvar/FloatCVar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/cvar/FloatCVar.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/cvar/IntCVar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/cvar/IntCVar.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/cvar/StringCVar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/cvar/StringCVar.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/cvar/class-use/BooleanCVar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/cvar/class-use/BooleanCVar.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/cvar/class-use/CVar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/cvar/class-use/CVar.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/cvar/class-use/CVarFlags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/cvar/class-use/CVarFlags.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/cvar/class-use/CVarSystemMap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/cvar/class-use/CVarSystemMap.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/cvar/class-use/CVarSystemRoot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/cvar/class-use/CVarSystemRoot.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/cvar/class-use/CVarSystemSave.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/cvar/class-use/CVarSystemSave.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/cvar/class-use/FloatCVar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/cvar/class-use/FloatCVar.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/cvar/class-use/IntCVar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/cvar/class-use/IntCVar.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/cvar/class-use/StringCVar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/cvar/class-use/StringCVar.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/cvar/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/cvar/package-frame.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/cvar/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/cvar/package-summary.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/cvar/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/cvar/package-tree.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/cvar/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/cvar/package-use.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/gameobjects/AbstractEntity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/gameobjects/AbstractEntity.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/gameobjects/AbstractGameObject.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/gameobjects/AbstractGameObject.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/gameobjects/Animatable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/gameobjects/Animatable.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/gameobjects/BenchmarkBall.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/gameobjects/BenchmarkBall.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/gameobjects/Component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/gameobjects/Component.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/gameobjects/Controllable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/gameobjects/Controllable.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/gameobjects/Cursor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/gameobjects/Cursor.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/gameobjects/DestructionParticle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/gameobjects/DestructionParticle.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/gameobjects/EntityAnimation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/gameobjects/EntityAnimation.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/gameobjects/EntityBlock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/gameobjects/EntityBlock.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/gameobjects/EntityShadow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/gameobjects/EntityShadow.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/gameobjects/Explosion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/gameobjects/Explosion.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/gameobjects/MovableEntity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/gameobjects/MovableEntity.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/gameobjects/MoveToAi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/gameobjects/MoveToAi.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/gameobjects/Particle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/gameobjects/Particle.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/gameobjects/ParticleEmitter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/gameobjects/ParticleEmitter.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/gameobjects/ParticleType.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/gameobjects/ParticleType.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/gameobjects/PointLightSource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/gameobjects/PointLightSource.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/gameobjects/Side.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/gameobjects/Side.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/gameobjects/SimpleEntity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/gameobjects/SimpleEntity.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/gameobjects/class-use/Component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/gameobjects/class-use/Component.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/gameobjects/class-use/Cursor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/gameobjects/class-use/Cursor.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/gameobjects/class-use/Explosion.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/gameobjects/class-use/Explosion.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/gameobjects/class-use/MoveToAi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/gameobjects/class-use/MoveToAi.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/gameobjects/class-use/Particle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/gameobjects/class-use/Particle.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/gameobjects/class-use/Side.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/gameobjects/class-use/Side.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/gameobjects/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/gameobjects/package-frame.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/gameobjects/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/gameobjects/package-summary.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/gameobjects/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/gameobjects/package-tree.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/gameobjects/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/gameobjects/package-use.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/lightengine/GlobalLightSource.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/lightengine/GlobalLightSource.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/lightengine/LightEngine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/lightengine/LightEngine.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/lightengine/Moon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/lightengine/Moon.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/lightengine/class-use/Moon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/lightengine/class-use/Moon.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/lightengine/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/lightengine/package-frame.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/lightengine/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/lightengine/package-summary.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/lightengine/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/lightengine/package-tree.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/lightengine/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/lightengine/package-use.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/loading/LoadingBar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/loading/LoadingBar.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/loading/LoadingScreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/loading/LoadingScreen.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/loading/class-use/LoadingBar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/loading/class-use/LoadingBar.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/loading/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/loading/package-frame.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/loading/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/loading/package-summary.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/loading/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/loading/package-tree.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/loading/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/loading/package-use.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/BlockConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/BlockConfig.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/Chunk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/Chunk.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/ChunkLoader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/ChunkLoader.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/CoordConnection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/CoordConnection.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/Coordinate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/Coordinate.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/CustomMapCVarRegistration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/CustomMapCVarRegistration.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/Generator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/Generator.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/Generators/AirGenerator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/Generators/AirGenerator.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/Generators/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/Generators/package-frame.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/Generators/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/Generators/package-tree.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/Generators/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/Generators/package-use.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/Intersection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/Intersection.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/Iterators/DataIterator3D.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/Iterators/DataIterator3D.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/Iterators/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/Iterators/package-frame.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/Iterators/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/Iterators/package-summary.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/Iterators/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/Iterators/package-tree.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/Iterators/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/Iterators/package-use.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/LoadMenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/LoadMenu.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/Map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/Map.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/MapButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/MapButton.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/PfNode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/PfNode.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/Point.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/Point.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/Position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/Position.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/class-use/BlockConfig.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/class-use/BlockConfig.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/class-use/Chunk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/class-use/Chunk.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/class-use/ChunkLoader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/class-use/ChunkLoader.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/class-use/CoordConnection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/class-use/CoordConnection.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/class-use/Coordinate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/class-use/Coordinate.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/class-use/Generator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/class-use/Generator.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/class-use/Intersection.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/class-use/Intersection.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/class-use/LoadMenu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/class-use/LoadMenu.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/class-use/Map.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/class-use/Map.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/class-use/MapButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/class-use/MapButton.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/class-use/PfNode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/class-use/PfNode.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/class-use/Point.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/class-use/Point.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/class-use/Position.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/class-use/Position.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/package-frame.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/package-summary.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/package-tree.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/package-use.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/rendering/AnimatedBlock.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/rendering/AnimatedBlock.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/rendering/GameSpaceSprite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/rendering/GameSpaceSprite.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/rendering/RenderCell.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/rendering/RenderCell.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/rendering/RenderChunk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/rendering/RenderChunk.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/rendering/RenderStorage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/rendering/RenderStorage.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/rendering/Sea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/rendering/Sea.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/rendering/class-use/Sea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/rendering/class-use/Sea.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/rendering/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/rendering/package-frame.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/rendering/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/rendering/package-summary.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/rendering/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/rendering/package-tree.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/map/rendering/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/map/rendering/package-use.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/package-frame.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/package-summary.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/package-tree.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/package-use.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/sorting/AbstractSorter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/sorting/AbstractSorter.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/sorting/DepthValueSort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/sorting/DepthValueSort.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/sorting/NoSort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/sorting/NoSort.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/sorting/TopoGraphNode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/sorting/TopoGraphNode.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/sorting/TopologicalSort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/sorting/TopologicalSort.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/sorting/class-use/NoSort.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/sorting/class-use/NoSort.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/sorting/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/sorting/package-frame.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/sorting/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/sorting/package-summary.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/sorting/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/sorting/package-tree.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/core/sorting/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/core/sorting/package-use.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/extension/AimBand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/extension/AimBand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/extension/Benchmark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/extension/Benchmark.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/extension/MiniMapChunkDebug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/extension/MiniMapChunkDebug.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/extension/Minimap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/extension/Minimap.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/extension/PseudoGrey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/extension/PseudoGrey.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/extension/UserControlledShooter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/extension/UserControlledShooter.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/extension/basicmainmenu/MenuView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/extension/basicmainmenu/MenuView.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/extension/class-use/AimBand.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/extension/class-use/AimBand.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/extension/class-use/Benchmark.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/extension/class-use/Benchmark.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/extension/class-use/Minimap.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/extension/class-use/Minimap.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/extension/class-use/PseudoGrey.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/extension/class-use/PseudoGrey.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/extension/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/extension/package-frame.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/extension/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/extension/package-summary.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/extension/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/extension/package-tree.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/extension/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/extension/package-use.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/extension/shooting/Bullet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/extension/shooting/Bullet.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/extension/shooting/Laserdot.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/extension/shooting/Laserdot.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/extension/shooting/Weapon.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/extension/shooting/Weapon.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/extension/shooting/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/extension/shooting/package-frame.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/extension/shooting/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/extension/shooting/package-summary.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/extension/shooting/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/extension/shooting/package-tree.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/extension/shooting/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/extension/shooting/package-use.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/mapeditor/AbstractPlacableTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/mapeditor/AbstractPlacableTable.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/mapeditor/BlockDrawable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/mapeditor/BlockDrawable.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/mapeditor/BlockTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/mapeditor/BlockTable.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/mapeditor/CursorInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/mapeditor/CursorInfo.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/mapeditor/EditorToggler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/mapeditor/EditorToggler.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/mapeditor/EditorView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/mapeditor/EditorView.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/mapeditor/EntityDrawable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/mapeditor/EntityDrawable.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/mapeditor/EntityTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/mapeditor/EntityTable.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/mapeditor/Navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/mapeditor/Navigation.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/mapeditor/PlacableItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/mapeditor/PlacableItem.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/mapeditor/Tool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/mapeditor/Tool.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/mapeditor/Toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/mapeditor/Toolbar.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/mapeditor/class-use/BlockDrawable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/mapeditor/class-use/BlockDrawable.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/mapeditor/class-use/BlockTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/mapeditor/class-use/BlockTable.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/mapeditor/class-use/CursorInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/mapeditor/class-use/CursorInfo.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/mapeditor/class-use/EditorToggler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/mapeditor/class-use/EditorToggler.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/mapeditor/class-use/EditorView.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/mapeditor/class-use/EditorView.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/mapeditor/class-use/EntityDrawable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/mapeditor/class-use/EntityDrawable.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/mapeditor/class-use/EntityTable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/mapeditor/class-use/EntityTable.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/mapeditor/class-use/Navigation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/mapeditor/class-use/Navigation.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/mapeditor/class-use/PlacableItem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/mapeditor/class-use/PlacableItem.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/mapeditor/class-use/Tool.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/mapeditor/class-use/Tool.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/mapeditor/class-use/Toolbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/mapeditor/class-use/Toolbar.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/mapeditor/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/mapeditor/package-frame.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/mapeditor/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/mapeditor/package-summary.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/mapeditor/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/mapeditor/package-tree.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/mapeditor/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/mapeditor/package-use.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/package-frame.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/package-summary.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/package-tree.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/package-use.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/soundengine/SoundEngine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/soundengine/SoundEngine.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/soundengine/class-use/SoundEngine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/soundengine/class-use/SoundEngine.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/soundengine/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/soundengine/package-frame.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/soundengine/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/soundengine/package-summary.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/soundengine/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/soundengine/package-tree.html -------------------------------------------------------------------------------- /docs/com/bombinggames/wurfelengine/soundengine/package-use.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/com/bombinggames/wurfelengine/soundengine/package-use.html -------------------------------------------------------------------------------- /docs/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/constant-values.html -------------------------------------------------------------------------------- /docs/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/deprecated-list.html -------------------------------------------------------------------------------- /docs/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/help-doc.html -------------------------------------------------------------------------------- /docs/index-files/index-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/index-files/index-1.html -------------------------------------------------------------------------------- /docs/index-files/index-10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/index-files/index-10.html -------------------------------------------------------------------------------- /docs/index-files/index-11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/index-files/index-11.html -------------------------------------------------------------------------------- /docs/index-files/index-12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/index-files/index-12.html -------------------------------------------------------------------------------- /docs/index-files/index-13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/index-files/index-13.html -------------------------------------------------------------------------------- /docs/index-files/index-14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/index-files/index-14.html -------------------------------------------------------------------------------- /docs/index-files/index-15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/index-files/index-15.html -------------------------------------------------------------------------------- /docs/index-files/index-16.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/index-files/index-16.html -------------------------------------------------------------------------------- /docs/index-files/index-17.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/index-files/index-17.html -------------------------------------------------------------------------------- /docs/index-files/index-18.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/index-files/index-18.html -------------------------------------------------------------------------------- /docs/index-files/index-19.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/index-files/index-19.html -------------------------------------------------------------------------------- /docs/index-files/index-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/index-files/index-2.html -------------------------------------------------------------------------------- /docs/index-files/index-20.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/index-files/index-20.html -------------------------------------------------------------------------------- /docs/index-files/index-21.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/index-files/index-21.html -------------------------------------------------------------------------------- /docs/index-files/index-22.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/index-files/index-22.html -------------------------------------------------------------------------------- /docs/index-files/index-23.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/index-files/index-23.html -------------------------------------------------------------------------------- /docs/index-files/index-24.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/index-files/index-24.html -------------------------------------------------------------------------------- /docs/index-files/index-25.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/index-files/index-25.html -------------------------------------------------------------------------------- /docs/index-files/index-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/index-files/index-3.html -------------------------------------------------------------------------------- /docs/index-files/index-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/index-files/index-4.html -------------------------------------------------------------------------------- /docs/index-files/index-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/index-files/index-5.html -------------------------------------------------------------------------------- /docs/index-files/index-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/index-files/index-6.html -------------------------------------------------------------------------------- /docs/index-files/index-7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/index-files/index-7.html -------------------------------------------------------------------------------- /docs/index-files/index-8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/index-files/index-8.html -------------------------------------------------------------------------------- /docs/index-files/index-9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/index-files/index-9.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/jquery/external/jquery/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/jquery/external/jquery/jquery.js -------------------------------------------------------------------------------- /docs/jquery/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/jquery/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /docs/jquery/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/jquery/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /docs/jquery/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/jquery/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /docs/jquery/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/jquery/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /docs/jquery/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/jquery/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /docs/jquery/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/jquery/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /docs/jquery/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/jquery/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /docs/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/jquery/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /docs/jquery/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/jquery/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /docs/jquery/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/jquery/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /docs/jquery/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/jquery/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /docs/jquery/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/jquery/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /docs/jquery/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/jquery/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /docs/jquery/jquery-1.10.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/jquery/jquery-1.10.2.js -------------------------------------------------------------------------------- /docs/jquery/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/jquery/jquery-ui.css -------------------------------------------------------------------------------- /docs/jquery/jquery-ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/jquery/jquery-ui.js -------------------------------------------------------------------------------- /docs/jquery/jquery-ui.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/jquery/jquery-ui.min.css -------------------------------------------------------------------------------- /docs/jquery/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/jquery/jquery-ui.min.js -------------------------------------------------------------------------------- /docs/jquery/jquery-ui.structure.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/jquery/jquery-ui.structure.css -------------------------------------------------------------------------------- /docs/jquery/jquery-ui.structure.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/jquery/jquery-ui.structure.min.css -------------------------------------------------------------------------------- /docs/jquery/jszip-utils/dist/jszip-utils-ie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/jquery/jszip-utils/dist/jszip-utils-ie.js -------------------------------------------------------------------------------- /docs/jquery/jszip-utils/dist/jszip-utils-ie.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/jquery/jszip-utils/dist/jszip-utils-ie.min.js -------------------------------------------------------------------------------- /docs/jquery/jszip-utils/dist/jszip-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/jquery/jszip-utils/dist/jszip-utils.js -------------------------------------------------------------------------------- /docs/jquery/jszip-utils/dist/jszip-utils.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/jquery/jszip-utils/dist/jszip-utils.min.js -------------------------------------------------------------------------------- /docs/jquery/jszip/dist/jszip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/jquery/jszip/dist/jszip.js -------------------------------------------------------------------------------- /docs/jquery/jszip/dist/jszip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/jquery/jszip/dist/jszip.min.js -------------------------------------------------------------------------------- /docs/member-search-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/member-search-index.js -------------------------------------------------------------------------------- /docs/member-search-index.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/member-search-index.zip -------------------------------------------------------------------------------- /docs/overview-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/overview-frame.html -------------------------------------------------------------------------------- /docs/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/overview-summary.html -------------------------------------------------------------------------------- /docs/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/overview-tree.html -------------------------------------------------------------------------------- /docs/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/package-list -------------------------------------------------------------------------------- /docs/package-search-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/package-search-index.js -------------------------------------------------------------------------------- /docs/package-search-index.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/package-search-index.zip -------------------------------------------------------------------------------- /docs/resources/glass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/resources/glass.png -------------------------------------------------------------------------------- /docs/resources/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/resources/x.png -------------------------------------------------------------------------------- /docs/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/script.js -------------------------------------------------------------------------------- /docs/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/search.js -------------------------------------------------------------------------------- /docs/serialized-form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/serialized-form.html -------------------------------------------------------------------------------- /docs/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/stylesheet.css -------------------------------------------------------------------------------- /docs/type-search-index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/type-search-index.js -------------------------------------------------------------------------------- /docs/type-search-index.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/docs/type-search-index.zip -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/license.txt -------------------------------------------------------------------------------- /sprites/game objects/Spritesheet mc.tps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/Spritesheet mc.tps -------------------------------------------------------------------------------- /sprites/game objects/Spritesheet.tps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/Spritesheet.tps -------------------------------------------------------------------------------- /sprites/game objects/blocks/b0-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/blocks/b0-0-0.png -------------------------------------------------------------------------------- /sprites/game objects/blocks/b0-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/blocks/b0-0-1.png -------------------------------------------------------------------------------- /sprites/game objects/blocks/b0-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/blocks/b0-0-2.png -------------------------------------------------------------------------------- /sprites/game objects/blocks/b1-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/blocks/b1-0-0.png -------------------------------------------------------------------------------- /sprites/game objects/blocks/b1-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/blocks/b1-0-1.png -------------------------------------------------------------------------------- /sprites/game objects/blocks/b1-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/blocks/b1-0-2.png -------------------------------------------------------------------------------- /sprites/game objects/blocks/b2-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/blocks/b2-0-0.png -------------------------------------------------------------------------------- /sprites/game objects/blocks/b2-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/blocks/b2-0-1.png -------------------------------------------------------------------------------- /sprites/game objects/blocks/b2-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/blocks/b2-0-2.png -------------------------------------------------------------------------------- /sprites/game objects/blocks/b3-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/blocks/b3-0-0.png -------------------------------------------------------------------------------- /sprites/game objects/blocks/b3-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/blocks/b3-0-1.png -------------------------------------------------------------------------------- /sprites/game objects/blocks/b3-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/blocks/b3-0-2.png -------------------------------------------------------------------------------- /sprites/game objects/blocks/b34-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/blocks/b34-0.png -------------------------------------------------------------------------------- /sprites/game objects/blocks/b35-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/blocks/b35-0.png -------------------------------------------------------------------------------- /sprites/game objects/blocks/b71-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/blocks/b71-0.png -------------------------------------------------------------------------------- /sprites/game objects/blocks/b71-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/blocks/b71-1.png -------------------------------------------------------------------------------- /sprites/game objects/blocks/b8-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/blocks/b8-0-0.png -------------------------------------------------------------------------------- /sprites/game objects/blocks/b8-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/blocks/b8-0-1.png -------------------------------------------------------------------------------- /sprites/game objects/blocks/b8-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/blocks/b8-0-2.png -------------------------------------------------------------------------------- /sprites/game objects/blocks/b9-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/blocks/b9-0-0.png -------------------------------------------------------------------------------- /sprites/game objects/blocks/b9-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/blocks/b9-0-1.png -------------------------------------------------------------------------------- /sprites/game objects/blocks/b9-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/blocks/b9-0-2.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e12-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e12-0.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e12-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e12-1.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e12-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e12-2.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e12-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e12-3.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e15-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e15-0.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e16-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e16-0.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e17-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e17-0.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e18-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e18-0.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e19-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e19-0.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e20-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e20-0.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e3-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e3-0.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e3-1.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e3-2.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e3-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e3-3.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e3-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e3-4.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e3-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e3-5.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e3-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e3-6.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e3-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e3-7.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e3-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e3-8.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e30-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e30-0.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e30-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e30-1.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e30-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e30-2.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e30-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e30-3.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e30-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e30-4.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e30-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e30-5.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e30-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e30-6.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e30-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e30-7.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e31-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e31-0.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e31-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e31-1.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e5-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e5-0.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e6-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e6-0.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e8-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e8-0.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e9-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e9-0.png -------------------------------------------------------------------------------- /sprites/game objects/entities/e9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/e9-1.png -------------------------------------------------------------------------------- /sprites/game objects/entities/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/entities/error.png -------------------------------------------------------------------------------- /sprites/game objects/interface/i10-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/interface/i10-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcblocks/b0-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcblocks/b0-0-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcblocks/b0-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcblocks/b0-0-1.png -------------------------------------------------------------------------------- /sprites/game objects/mcblocks/b0-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcblocks/b0-0-2.png -------------------------------------------------------------------------------- /sprites/game objects/mcblocks/b1-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcblocks/b1-0-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcblocks/b1-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcblocks/b1-0-1.png -------------------------------------------------------------------------------- /sprites/game objects/mcblocks/b1-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcblocks/b1-0-2.png -------------------------------------------------------------------------------- /sprites/game objects/mcblocks/b2-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcblocks/b2-0-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcblocks/b2-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcblocks/b2-0-1.png -------------------------------------------------------------------------------- /sprites/game objects/mcblocks/b2-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcblocks/b2-0-2.png -------------------------------------------------------------------------------- /sprites/game objects/mcblocks/b3-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcblocks/b3-0-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcblocks/b3-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcblocks/b3-0-1.png -------------------------------------------------------------------------------- /sprites/game objects/mcblocks/b3-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcblocks/b3-0-2.png -------------------------------------------------------------------------------- /sprites/game objects/mcblocks/b8-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcblocks/b8-0-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcblocks/b8-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcblocks/b8-0-1.png -------------------------------------------------------------------------------- /sprites/game objects/mcblocks/b8-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcblocks/b8-0-2.png -------------------------------------------------------------------------------- /sprites/game objects/mcblocks/b9-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcblocks/b9-0-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcblocks/b9-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcblocks/b9-0-1.png -------------------------------------------------------------------------------- /sprites/game objects/mcblocks/b9-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcblocks/b9-0-2.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b0-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b0-0-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b0-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b0-0-1.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b0-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b0-0-2.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b1-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b1-0-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b1-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b1-0-1.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b1-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b1-0-2.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b17-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b17-0-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b17-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b17-0-1.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b17-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b17-0-2.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b18-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b18-0-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b18-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b18-0-1.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b18-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b18-0-2.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b2-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b2-0-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b2-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b2-0-1.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b2-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b2-0-2.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b20-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b20-0-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b20-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b20-0-1.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b20-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b20-0-2.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b21-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b21-0-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b21-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b21-0-1.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b21-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b21-0-2.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b3-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b3-0-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b3-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b3-0-1.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b3-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b3-0-2.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b34-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b34-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b35-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b35-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b4-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b4-0-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b4-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b4-0-1.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b4-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b4-0-2.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b44-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b44-0-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b44-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b44-0-1.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b44-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b44-0-2.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b44-1-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b44-1-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b44-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b44-1-1.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b44-1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b44-1-2.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b5-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b5-0-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b5-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b5-0-1.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b5-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b5-0-2.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b6-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b6-0-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b6-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b6-0-1.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b6-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b6-0-2.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b7-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b7-0-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b7-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b7-0-1.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b7-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b7-0-2.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b70-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b70-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b71-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b71-0-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b71-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b71-0-1.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b71-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b71-0-2.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b71-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b71-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b71-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b71-1.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b8-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b8-0-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b8-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b8-0-1.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b8-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b8-0-2.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b9-0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b9-0-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b9-0-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b9-0-1.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b9-0-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b9-0-2.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b9-1-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b9-1-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b9-1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b9-1-1.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b9-1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b9-1-2.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b9-2-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b9-2-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b9-2-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b9-2-1.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/b9-2-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/b9-2-2.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/e13-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/e13-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/e40-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/e40-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/e40-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/e40-1.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/e40-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/e40-10.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/e40-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/e40-11.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/e40-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/e40-12.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/e40-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/e40-13.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/e40-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/e40-14.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/e40-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/e40-15.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/e40-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/e40-16.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/e40-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/e40-17.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/e40-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/e40-18.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/e40-19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/e40-19.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/e40-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/e40-2.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/e40-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/e40-20.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/e40-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/e40-21.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/e40-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/e40-22.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/e40-23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/e40-23.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/e40-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/e40-3.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/e40-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/e40-4.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/e40-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/e40-5.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/e40-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/e40-6.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/e40-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/e40-7.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/e40-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/e40-8.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/e40-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/e40-9.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/e41-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/e41-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/e41-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/e41-1.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/e42-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/e42-0.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/error.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/selection.png -------------------------------------------------------------------------------- /sprites/game objects/mcsprites/toolbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/game objects/mcsprites/toolbar.png -------------------------------------------------------------------------------- /sprites/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/license.txt -------------------------------------------------------------------------------- /sprites/loading/banner_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/loading/banner_medium.png -------------------------------------------------------------------------------- /sprites/loading/loading-bar-hidden.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/loading/loading-bar-hidden.png -------------------------------------------------------------------------------- /sprites/loading/loading-frame-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/loading/loading-frame-bg.png -------------------------------------------------------------------------------- /sprites/loading/loading-frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/loading/loading-frame.png -------------------------------------------------------------------------------- /sprites/loading/loading.tps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/loading/loading.tps -------------------------------------------------------------------------------- /sprites/loading/loading_bar1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/loading/loading_bar1.png -------------------------------------------------------------------------------- /sprites/loading/loading_bar2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/loading/loading_bar2.png -------------------------------------------------------------------------------- /sprites/loading/loading_bar3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/loading/loading_bar3.png -------------------------------------------------------------------------------- /sprites/loading/screen-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/loading/screen-bg.png -------------------------------------------------------------------------------- /sprites/skin/bucket_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/skin/bucket_button.png -------------------------------------------------------------------------------- /sprites/skin/draw_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/skin/draw_button.png -------------------------------------------------------------------------------- /sprites/skin/entity_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/skin/entity_button.png -------------------------------------------------------------------------------- /sprites/skin/eraser_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/skin/eraser_button.png -------------------------------------------------------------------------------- /sprites/skin/gui.tps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/skin/gui.tps -------------------------------------------------------------------------------- /sprites/skin/load_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/skin/load_button.png -------------------------------------------------------------------------------- /sprites/skin/pause_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/skin/pause_button.png -------------------------------------------------------------------------------- /sprites/skin/play_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/skin/play_button.png -------------------------------------------------------------------------------- /sprites/skin/play_button.pxm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/skin/play_button.pxm -------------------------------------------------------------------------------- /sprites/skin/pointer_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/skin/pointer_button.png -------------------------------------------------------------------------------- /sprites/skin/replace_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/skin/replace_button.png -------------------------------------------------------------------------------- /sprites/skin/reset_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/skin/reset_button.png -------------------------------------------------------------------------------- /sprites/skin/save_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/skin/save_button.png -------------------------------------------------------------------------------- /sprites/skin/stop_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/sprites/skin/stop_button.png -------------------------------------------------------------------------------- /tools/WurfelEngine.atn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BSVogler/WurfelEngineSDK/HEAD/tools/WurfelEngine.atn --------------------------------------------------------------------------------