├── .vscode └── settings.json ├── LICENSE ├── Makefile ├── README.md ├── SDL2.dll ├── SDL2_image.dll ├── SDL2_mixer.dll ├── assets ├── backgrounds │ ├── background.png │ └── background2.png ├── editor │ ├── bulb.png │ ├── chains.png │ ├── cloud.png │ ├── coin.png │ ├── displacement.png │ ├── explosion.png │ ├── flag.png │ ├── levelPad.png │ ├── movenode.png │ ├── particleExplosion.png │ ├── sand.png │ ├── script.png │ ├── skull.png │ ├── star.png │ ├── textIcon.png │ ├── tools.png │ ├── trophy.png │ └── water.png ├── enemy │ └── enemy.png ├── fonts │ ├── font-2.png │ ├── font.png │ └── font_atlas.png ├── light │ ├── light.png │ ├── light2.png │ ├── light3.png │ ├── light4.png │ └── light5.png ├── player │ ├── grappleFailed.png │ ├── player.png │ └── specials.png ├── scripts │ ├── Documentation │ │ └── Documentation.txt │ ├── Teleport - Copie.txt │ ├── Teleport.txt │ ├── ZoomIn.txt │ └── ZoomOut.txt ├── sound │ ├── Throw.wav │ ├── buttonSelect.wav │ ├── checkpoint.wav │ ├── death.wav │ ├── enemyDash.wav │ ├── enemy_dead.wav │ ├── enemy_hurt.wav │ ├── finish.wav │ ├── hover.wav │ ├── jump.wav │ ├── levelSelect.wav │ ├── pickup.wav │ ├── slash.wav │ ├── step1.wav │ ├── step2.wav │ ├── text.wav │ ├── transition.wav │ ├── wall.wav │ ├── wallJump.wav │ └── woosh.wav └── textures │ ├── Bcheck.pNg │ ├── arrows.png │ ├── arrows2.png │ ├── box.png │ ├── bush1.png │ ├── bush2.png │ ├── check.PNG │ ├── floatyThing.png │ ├── floor.png │ ├── ladder.png │ ├── sawblade.png │ ├── soil.png │ ├── spikes.png │ ├── stone.png │ ├── stone2.png │ ├── stone3.png │ ├── strangeFloor.png │ ├── tileBlue.png │ ├── tileGreen.png │ ├── tileRed.png │ ├── tileWhite.png │ ├── tomb.png │ ├── torch.png │ ├── torch2.png │ ├── tree.png │ ├── tree2.png │ ├── underStone.png │ └── wall2.png ├── githubIMG ├── Capture.PNG ├── Capture2.PNG ├── Capture3.PNG └── Capture4.PNG ├── levels ├── aaaa.txt ├── background.txt ├── brhuhh.txt ├── bruhhh.txt ├── ee.txt ├── elevator.txt ├── enemy.txt ├── game.txt ├── green1.txt ├── hello.txt ├── hurt.txt ├── introduction.txt ├── introduction2.txt ├── introduction3.txt ├── introduction4.txt ├── introduction5.txt ├── map.txt ├── nice.txt ├── out somewhere.txt ├── problem kid.txt ├── projectile.txt ├── specials.txt ├── stair.txt ├── stairs.txt ├── the.txt └── zoominout.txt ├── main.c ├── profiles ├── placeholder.file └── player.txt ├── readmePhoto.PNG └── src ├── editor ├── addObject.c ├── editor.c └── transformObject.c ├── game ├── collision.c ├── game.c ├── movement.c ├── objectMovement.c ├── particles.c └── script.c ├── include.h ├── init.c └── main ├── GUIElements.c ├── app_status.c ├── draw.c ├── initTexture.c ├── input_listener.c ├── mapdata.c ├── menu.c ├── profile.c ├── recordReplay.c ├── renderGUI.c ├── sounds.c ├── structs.h ├── text.c ├── textureQuad.c └── useFunctions.c /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "C_Cpp.errorSquiggles": "Enabled" 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/README.md -------------------------------------------------------------------------------- /SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/SDL2.dll -------------------------------------------------------------------------------- /SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/SDL2_image.dll -------------------------------------------------------------------------------- /SDL2_mixer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/SDL2_mixer.dll -------------------------------------------------------------------------------- /assets/backgrounds/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/backgrounds/background.png -------------------------------------------------------------------------------- /assets/backgrounds/background2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/backgrounds/background2.png -------------------------------------------------------------------------------- /assets/editor/bulb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/editor/bulb.png -------------------------------------------------------------------------------- /assets/editor/chains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/editor/chains.png -------------------------------------------------------------------------------- /assets/editor/cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/editor/cloud.png -------------------------------------------------------------------------------- /assets/editor/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/editor/coin.png -------------------------------------------------------------------------------- /assets/editor/displacement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/editor/displacement.png -------------------------------------------------------------------------------- /assets/editor/explosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/editor/explosion.png -------------------------------------------------------------------------------- /assets/editor/flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/editor/flag.png -------------------------------------------------------------------------------- /assets/editor/levelPad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/editor/levelPad.png -------------------------------------------------------------------------------- /assets/editor/movenode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/editor/movenode.png -------------------------------------------------------------------------------- /assets/editor/particleExplosion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/editor/particleExplosion.png -------------------------------------------------------------------------------- /assets/editor/sand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/editor/sand.png -------------------------------------------------------------------------------- /assets/editor/script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/editor/script.png -------------------------------------------------------------------------------- /assets/editor/skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/editor/skull.png -------------------------------------------------------------------------------- /assets/editor/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/editor/star.png -------------------------------------------------------------------------------- /assets/editor/textIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/editor/textIcon.png -------------------------------------------------------------------------------- /assets/editor/tools.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/editor/tools.png -------------------------------------------------------------------------------- /assets/editor/trophy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/editor/trophy.png -------------------------------------------------------------------------------- /assets/editor/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/editor/water.png -------------------------------------------------------------------------------- /assets/enemy/enemy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/enemy/enemy.png -------------------------------------------------------------------------------- /assets/fonts/font-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/fonts/font-2.png -------------------------------------------------------------------------------- /assets/fonts/font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/fonts/font.png -------------------------------------------------------------------------------- /assets/fonts/font_atlas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/fonts/font_atlas.png -------------------------------------------------------------------------------- /assets/light/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/light/light.png -------------------------------------------------------------------------------- /assets/light/light2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/light/light2.png -------------------------------------------------------------------------------- /assets/light/light3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/light/light3.png -------------------------------------------------------------------------------- /assets/light/light4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/light/light4.png -------------------------------------------------------------------------------- /assets/light/light5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/light/light5.png -------------------------------------------------------------------------------- /assets/player/grappleFailed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/player/grappleFailed.png -------------------------------------------------------------------------------- /assets/player/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/player/player.png -------------------------------------------------------------------------------- /assets/player/specials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/player/specials.png -------------------------------------------------------------------------------- /assets/scripts/Documentation/Documentation.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/scripts/Documentation/Documentation.txt -------------------------------------------------------------------------------- /assets/scripts/Teleport - Copie.txt: -------------------------------------------------------------------------------- 1 | >Bruhhhh:1,1;! -------------------------------------------------------------------------------- /assets/scripts/Teleport.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/scripts/Teleport.txt -------------------------------------------------------------------------------- /assets/scripts/ZoomIn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/scripts/ZoomIn.txt -------------------------------------------------------------------------------- /assets/scripts/ZoomOut.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/scripts/ZoomOut.txt -------------------------------------------------------------------------------- /assets/sound/Throw.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/sound/Throw.wav -------------------------------------------------------------------------------- /assets/sound/buttonSelect.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/sound/buttonSelect.wav -------------------------------------------------------------------------------- /assets/sound/checkpoint.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/sound/checkpoint.wav -------------------------------------------------------------------------------- /assets/sound/death.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/sound/death.wav -------------------------------------------------------------------------------- /assets/sound/enemyDash.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/sound/enemyDash.wav -------------------------------------------------------------------------------- /assets/sound/enemy_dead.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/sound/enemy_dead.wav -------------------------------------------------------------------------------- /assets/sound/enemy_hurt.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/sound/enemy_hurt.wav -------------------------------------------------------------------------------- /assets/sound/finish.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/sound/finish.wav -------------------------------------------------------------------------------- /assets/sound/hover.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/sound/hover.wav -------------------------------------------------------------------------------- /assets/sound/jump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/sound/jump.wav -------------------------------------------------------------------------------- /assets/sound/levelSelect.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/sound/levelSelect.wav -------------------------------------------------------------------------------- /assets/sound/pickup.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/sound/pickup.wav -------------------------------------------------------------------------------- /assets/sound/slash.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/sound/slash.wav -------------------------------------------------------------------------------- /assets/sound/step1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/sound/step1.wav -------------------------------------------------------------------------------- /assets/sound/step2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/sound/step2.wav -------------------------------------------------------------------------------- /assets/sound/text.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/sound/text.wav -------------------------------------------------------------------------------- /assets/sound/transition.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/sound/transition.wav -------------------------------------------------------------------------------- /assets/sound/wall.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/sound/wall.wav -------------------------------------------------------------------------------- /assets/sound/wallJump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/sound/wallJump.wav -------------------------------------------------------------------------------- /assets/sound/woosh.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/sound/woosh.wav -------------------------------------------------------------------------------- /assets/textures/Bcheck.pNg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/textures/Bcheck.pNg -------------------------------------------------------------------------------- /assets/textures/arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/textures/arrows.png -------------------------------------------------------------------------------- /assets/textures/arrows2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/textures/arrows2.png -------------------------------------------------------------------------------- /assets/textures/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/textures/box.png -------------------------------------------------------------------------------- /assets/textures/bush1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/textures/bush1.png -------------------------------------------------------------------------------- /assets/textures/bush2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/textures/bush2.png -------------------------------------------------------------------------------- /assets/textures/check.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/textures/check.PNG -------------------------------------------------------------------------------- /assets/textures/floatyThing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/textures/floatyThing.png -------------------------------------------------------------------------------- /assets/textures/floor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/textures/floor.png -------------------------------------------------------------------------------- /assets/textures/ladder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/textures/ladder.png -------------------------------------------------------------------------------- /assets/textures/sawblade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/textures/sawblade.png -------------------------------------------------------------------------------- /assets/textures/soil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/textures/soil.png -------------------------------------------------------------------------------- /assets/textures/spikes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/textures/spikes.png -------------------------------------------------------------------------------- /assets/textures/stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/textures/stone.png -------------------------------------------------------------------------------- /assets/textures/stone2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/textures/stone2.png -------------------------------------------------------------------------------- /assets/textures/stone3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/textures/stone3.png -------------------------------------------------------------------------------- /assets/textures/strangeFloor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/textures/strangeFloor.png -------------------------------------------------------------------------------- /assets/textures/tileBlue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/textures/tileBlue.png -------------------------------------------------------------------------------- /assets/textures/tileGreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/textures/tileGreen.png -------------------------------------------------------------------------------- /assets/textures/tileRed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/textures/tileRed.png -------------------------------------------------------------------------------- /assets/textures/tileWhite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/textures/tileWhite.png -------------------------------------------------------------------------------- /assets/textures/tomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/textures/tomb.png -------------------------------------------------------------------------------- /assets/textures/torch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/textures/torch.png -------------------------------------------------------------------------------- /assets/textures/torch2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/textures/torch2.png -------------------------------------------------------------------------------- /assets/textures/tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/textures/tree.png -------------------------------------------------------------------------------- /assets/textures/tree2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/textures/tree2.png -------------------------------------------------------------------------------- /assets/textures/underStone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/textures/underStone.png -------------------------------------------------------------------------------- /assets/textures/wall2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/assets/textures/wall2.png -------------------------------------------------------------------------------- /githubIMG/Capture.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/githubIMG/Capture.PNG -------------------------------------------------------------------------------- /githubIMG/Capture2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/githubIMG/Capture2.PNG -------------------------------------------------------------------------------- /githubIMG/Capture3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/githubIMG/Capture3.PNG -------------------------------------------------------------------------------- /githubIMG/Capture4.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/githubIMG/Capture4.PNG -------------------------------------------------------------------------------- /levels/aaaa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/levels/aaaa.txt -------------------------------------------------------------------------------- /levels/background.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/levels/background.txt -------------------------------------------------------------------------------- /levels/brhuhh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/levels/brhuhh.txt -------------------------------------------------------------------------------- /levels/bruhhh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/levels/bruhhh.txt -------------------------------------------------------------------------------- /levels/ee.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/levels/ee.txt -------------------------------------------------------------------------------- /levels/elevator.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/levels/elevator.txt -------------------------------------------------------------------------------- /levels/enemy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/levels/enemy.txt -------------------------------------------------------------------------------- /levels/game.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/levels/game.txt -------------------------------------------------------------------------------- /levels/green1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/levels/green1.txt -------------------------------------------------------------------------------- /levels/hello.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/levels/hello.txt -------------------------------------------------------------------------------- /levels/hurt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/levels/hurt.txt -------------------------------------------------------------------------------- /levels/introduction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/levels/introduction.txt -------------------------------------------------------------------------------- /levels/introduction2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/levels/introduction2.txt -------------------------------------------------------------------------------- /levels/introduction3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/levels/introduction3.txt -------------------------------------------------------------------------------- /levels/introduction4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/levels/introduction4.txt -------------------------------------------------------------------------------- /levels/introduction5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/levels/introduction5.txt -------------------------------------------------------------------------------- /levels/map.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/levels/map.txt -------------------------------------------------------------------------------- /levels/nice.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/levels/nice.txt -------------------------------------------------------------------------------- /levels/out somewhere.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/levels/out somewhere.txt -------------------------------------------------------------------------------- /levels/problem kid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/levels/problem kid.txt -------------------------------------------------------------------------------- /levels/projectile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/levels/projectile.txt -------------------------------------------------------------------------------- /levels/specials.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/levels/specials.txt -------------------------------------------------------------------------------- /levels/stair.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/levels/stair.txt -------------------------------------------------------------------------------- /levels/stairs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/levels/stairs.txt -------------------------------------------------------------------------------- /levels/the.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/levels/the.txt -------------------------------------------------------------------------------- /levels/zoominout.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/levels/zoominout.txt -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/main.c -------------------------------------------------------------------------------- /profiles/placeholder.file: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profiles/player.txt: -------------------------------------------------------------------------------- 1 | player,0,650,4; -------------------------------------------------------------------------------- /readmePhoto.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/readmePhoto.PNG -------------------------------------------------------------------------------- /src/editor/addObject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/src/editor/addObject.c -------------------------------------------------------------------------------- /src/editor/editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/src/editor/editor.c -------------------------------------------------------------------------------- /src/editor/transformObject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/src/editor/transformObject.c -------------------------------------------------------------------------------- /src/game/collision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/src/game/collision.c -------------------------------------------------------------------------------- /src/game/game.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/src/game/game.c -------------------------------------------------------------------------------- /src/game/movement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/src/game/movement.c -------------------------------------------------------------------------------- /src/game/objectMovement.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/src/game/objectMovement.c -------------------------------------------------------------------------------- /src/game/particles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/src/game/particles.c -------------------------------------------------------------------------------- /src/game/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/src/game/script.c -------------------------------------------------------------------------------- /src/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/src/include.h -------------------------------------------------------------------------------- /src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/src/init.c -------------------------------------------------------------------------------- /src/main/GUIElements.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/src/main/GUIElements.c -------------------------------------------------------------------------------- /src/main/app_status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/src/main/app_status.c -------------------------------------------------------------------------------- /src/main/draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/src/main/draw.c -------------------------------------------------------------------------------- /src/main/initTexture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/src/main/initTexture.c -------------------------------------------------------------------------------- /src/main/input_listener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/src/main/input_listener.c -------------------------------------------------------------------------------- /src/main/mapdata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/src/main/mapdata.c -------------------------------------------------------------------------------- /src/main/menu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/src/main/menu.c -------------------------------------------------------------------------------- /src/main/profile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/src/main/profile.c -------------------------------------------------------------------------------- /src/main/recordReplay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/src/main/recordReplay.c -------------------------------------------------------------------------------- /src/main/renderGUI.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/src/main/renderGUI.c -------------------------------------------------------------------------------- /src/main/sounds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/src/main/sounds.c -------------------------------------------------------------------------------- /src/main/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/src/main/structs.h -------------------------------------------------------------------------------- /src/main/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/src/main/text.c -------------------------------------------------------------------------------- /src/main/textureQuad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/src/main/textureQuad.c -------------------------------------------------------------------------------- /src/main/useFunctions.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrGun3r/PlatformerEngine/HEAD/src/main/useFunctions.c --------------------------------------------------------------------------------