├── .gitattributes ├── .gitignore ├── .vscode ├── c_cpp_properties.json ├── extensions.json ├── launch.json ├── settings.json ├── tasks.json └── workspace.code-workspace ├── LICENSE ├── README.md ├── ZGB-2022.0 ├── .gitignore ├── LICENSE.txt ├── README.md ├── common │ ├── .vscode │ │ ├── c_cpp_properties.json │ │ └── settings.json │ ├── color.props │ ├── common.vcxproj │ ├── common.vcxproj.filters │ ├── gameboy.props │ ├── include │ │ ├── BankManager.h │ │ ├── Banks │ │ │ └── SetAutoBank.h │ │ ├── Fade.h │ │ ├── Keys.h │ │ ├── MapInfo.h │ │ ├── Math.h │ │ ├── MetaSpriteInfo.h │ │ ├── Music.h │ │ ├── OAMManager.h │ │ ├── Palette.h │ │ ├── Print.h │ │ ├── SGB.h │ │ ├── SRAM.h │ │ ├── Scroll.h │ │ ├── Sound.h │ │ ├── Sprite.h │ │ ├── SpriteManager.h │ │ ├── Stack.h │ │ ├── TilesInfo.h │ │ ├── Vector.h │ │ ├── ZGBMain_Init.h │ │ ├── gbt_player.h │ │ ├── hUGEDriver.h │ │ └── main.h │ ├── lib │ │ └── hUGEDriver.obj.o │ └── src │ │ ├── BankManager.c │ │ ├── Fade.c │ │ ├── Fade_b.c │ │ ├── Keys.c │ │ ├── Makefile │ │ ├── MakefileCommon │ │ ├── Math.c │ │ ├── Music.c │ │ ├── OAMManager.c │ │ ├── Print.c │ │ ├── SGB.c │ │ ├── SRAM.c │ │ ├── Scroll.c │ │ ├── Sound.c │ │ ├── Sprite.c │ │ ├── SpriteManager.c │ │ ├── Vector.c │ │ ├── ZGBMain_Init.c │ │ ├── gbt_player.s │ │ ├── gbt_player_bank1.s │ │ └── main.c ├── doc files │ ├── 10-bgpaletteset.PNG │ ├── 11-exportsettings.PNG │ ├── 12-labelName.PNG │ ├── 13-spritecolored.PNG │ ├── 14-bgbsettings.PNG │ ├── 15-enemycolored.PNG │ ├── 2-anim.PNG │ ├── 3-bad collision.PNG │ ├── 4-Location Format.PNG │ ├── 5-enemy.PNG │ ├── 5b-enemyExport.PNG │ ├── 6-map.PNG │ ├── 7-thumb.PNG │ ├── 8-mapenemies.PNG │ ├── 9-paletteChoose.PNG │ ├── bgb00003.bmp │ ├── bgb00004.bmp │ ├── bgb00006.bmp │ ├── bgb00007.bmp │ ├── bgb00008.bmp │ ├── bgb00009.bmp │ ├── enemyColored.bmp │ ├── envPath.PNG │ ├── hud_ingame.png │ ├── hud_ingame_palette.png │ ├── hud_map.png │ ├── hud_palette.png │ ├── hud_tiles.png │ ├── mod1.JPG │ ├── mod2.JPG │ ├── readme │ │ ├── ZGB-loop.png │ │ ├── coll_down.gif │ │ ├── collider.png │ │ ├── mirrors.gif │ │ └── scroll.gif │ ├── showcase │ │ ├── acattag.png │ │ ├── ancient.png │ │ ├── axebound.png │ │ ├── basketcase.png │ │ ├── bounmaze.png │ │ ├── cavern.png │ │ ├── chainbreak.png │ │ ├── deck.png │ │ ├── dungeonball.png │ │ ├── espetoblast.png │ │ ├── fairywowings.png │ │ ├── futurePizza.png │ │ ├── fuzzy.png │ │ ├── giant.png │ │ ├── grimoire.png │ │ ├── guardianghost.png │ │ ├── hungrybirds.png │ │ ├── hungrymonster.png │ │ ├── impossiblegameboy.png │ │ ├── initialD.png │ │ ├── kaijufeeder.png │ │ ├── luna.png │ │ ├── minigolf.png │ │ ├── mona.png │ │ ├── muffinalpaca.png │ │ ├── outofcontrol.png │ │ ├── pineapplekid.png │ │ ├── pluto.png │ │ ├── polkasheep.png │ │ ├── powa.png │ │ ├── prettyprincess.png │ │ ├── rc-shuriken.png │ │ ├── rick.png │ │ ├── shieldbouncer.png │ │ ├── shipping.png │ │ ├── sovietsnake.png │ │ ├── superprincess.png │ │ ├── sushinights.png │ │ ├── theReckoning.png │ │ ├── thesquire.png │ │ ├── topopajaros.png │ │ ├── upwel.png │ │ ├── vel-cro.png │ │ ├── velcrogolf.png │ │ ├── velcroid.png │ │ ├── velcroid0.png │ │ └── woolball.png │ └── tuto.gif ├── install.bat └── tools │ ├── gbm2c │ ├── GBMS9910.DOC.pdf │ ├── gbm2c.cpp │ ├── gbm2c.exe │ ├── gbm2c.sln │ ├── gbm2c.vcxproj │ └── gbm2c.vcxproj.filters │ ├── gbr2c │ ├── GBRS9906.DOC.pdf │ ├── gbr2c.cpp │ ├── gbr2c.exe │ ├── gbr2c.sln │ ├── gbr2c.vcxproj │ ├── gbr2c.vcxproj.filters │ ├── gbrParser .cpp │ └── gbrParser.h │ └── gbr2png │ ├── gbr2png.cpp │ ├── gbr2png.exe │ ├── gbr2png.sln │ ├── gbr2png.vcxproj │ ├── gbr2png.vcxproj.filters │ └── lodepng │ ├── lodepng.cpp │ └── lodepng.h ├── ZGB-template.sln ├── ZGB-template.vcxproj ├── ZGB-template.vcxproj.filters ├── clean.bat ├── include └── ZGBMain.h ├── paleta_gb_clasica.png ├── res ├── cementerio1.gbm ├── cementerio2.gbm ├── cementerio_tiles.gbr ├── desierto.gbm ├── font.gbr ├── hud.gbm ├── music │ ├── cemetery.uge │ ├── creditos.uge │ ├── deadboy.uge │ ├── gameover.uge │ ├── intro.uge │ ├── level_start.uge │ ├── muerte.uge │ ├── piramide_dentro.uge │ ├── selva.uge │ ├── stageclear.uge │ └── title.uge ├── piramidemapa.gbm ├── piramidetiles.gbr ├── pueblo2.gbm ├── pueblo_tiles2.gbr ├── selvamap.gbm └── sprites │ ├── Export.c │ ├── antorcha.png │ ├── antorcha.png.meta │ ├── bola.png │ ├── bola.png.meta │ ├── bomba.png │ ├── bomba.png.meta │ ├── bomba_item.png │ ├── bomba_item.png.meta │ ├── calabaza.png │ ├── calabaza.png.meta │ ├── calavera.png │ ├── calavera.png.meta │ ├── compo_logo.png │ ├── compo_logo.png.meta │ ├── corazon_item.png │ ├── corazon_item.png.meta │ ├── craneo.png │ ├── craneo.png.meta │ ├── credits.png │ ├── credits.png.meta │ ├── enemy_bullet.png │ ├── enemy_bullet.png.meta │ ├── entra_piramide.png │ ├── entra_piramide.png.meta │ ├── flecha_in.png │ ├── flecha_in.png.meta │ ├── gameover_screen.png │ ├── gameover_screen.png.meta │ ├── intro1.png │ ├── intro1.png.meta │ ├── intro2.png │ ├── intro2.png.meta │ ├── intro3.png │ ├── intro3.png.meta │ ├── intro4.png │ ├── intro4.png.meta │ ├── item_1up.png │ ├── item_1up.png.meta │ ├── llave.png │ ├── llave.png.meta │ ├── luchador.png │ ├── luchador.png.meta │ ├── mano.png │ ├── mano.png.meta │ ├── menu.png │ ├── menu.png.meta │ ├── murcielago.png │ ├── murcielago.png.meta │ ├── ojos.png │ ├── ojos.png.meta │ ├── pajarraco.png │ ├── pajarraco.png.meta │ ├── parca.png │ ├── parca.png.meta │ ├── pat_logo.png │ ├── pat_logo.png.meta │ ├── platform.png │ ├── platform.png.meta │ ├── press.png │ ├── press.png.meta │ ├── rompibles.png │ ├── rompibles.png.meta │ ├── soul.png │ ├── soul.png.meta │ ├── titulo_cementerio.png │ ├── titulo_cementerio.png.meta │ ├── titulo_pueblo.png │ ├── titulo_pueblo.png.meta │ ├── titulo_selva.png │ ├── titulo_selva.png.meta │ ├── titulos.png │ ├── titulos.png.meta │ ├── topo.png │ ├── topo.png.meta │ ├── tutorial_screen.png │ ├── tutorial_screen.png.meta │ ├── zgb_logo.png │ ├── zgb_logo.png.meta │ ├── zombie.png │ └── zombie.png.meta └── src ├── Makefile ├── Sprite1up.c ├── SpriteAntorcha.c ├── SpriteAutoScroll.c ├── SpriteAutoScrollCredits.c ├── SpriteBomba.c ├── SpriteBombaItem.c ├── SpriteCalabaza.c ├── SpriteCojon.c ├── SpriteCorazonItem.c ├── SpriteCraneo.c ├── SpriteEnemigo1.c ├── SpriteEnemigo2.c ├── SpriteEnemigo3.c ├── SpriteEnemyProyectile.c ├── SpriteFlechaIn.c ├── SpriteLlave.c ├── SpriteOjillos.c ├── SpritePajaro.c ├── SpritePlataforma.c ├── SpritePlayer.c ├── SpritePress.c ├── SpriteRompible.c ├── SpriteSoul.c ├── SpriteTitulo.c ├── SpriteTopo.c ├── SpriteZombie.c ├── StateChangeLevel.c ├── StateCredits.c ├── StateGame.c ├── StateGameOver.c ├── StateIntro.c ├── StateMenu.c ├── StateTituloNivel.c └── ZGBMain.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscode/workspace.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/.vscode/workspace.code-workspace -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/README.md -------------------------------------------------------------------------------- /ZGB-2022.0/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/.gitignore -------------------------------------------------------------------------------- /ZGB-2022.0/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/LICENSE.txt -------------------------------------------------------------------------------- /ZGB-2022.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/README.md -------------------------------------------------------------------------------- /ZGB-2022.0/common/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /ZGB-2022.0/common/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/.vscode/settings.json -------------------------------------------------------------------------------- /ZGB-2022.0/common/color.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/color.props -------------------------------------------------------------------------------- /ZGB-2022.0/common/common.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/common.vcxproj -------------------------------------------------------------------------------- /ZGB-2022.0/common/common.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/common.vcxproj.filters -------------------------------------------------------------------------------- /ZGB-2022.0/common/gameboy.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/gameboy.props -------------------------------------------------------------------------------- /ZGB-2022.0/common/include/BankManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/include/BankManager.h -------------------------------------------------------------------------------- /ZGB-2022.0/common/include/Banks/SetAutoBank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/include/Banks/SetAutoBank.h -------------------------------------------------------------------------------- /ZGB-2022.0/common/include/Fade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/include/Fade.h -------------------------------------------------------------------------------- /ZGB-2022.0/common/include/Keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/include/Keys.h -------------------------------------------------------------------------------- /ZGB-2022.0/common/include/MapInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/include/MapInfo.h -------------------------------------------------------------------------------- /ZGB-2022.0/common/include/Math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/include/Math.h -------------------------------------------------------------------------------- /ZGB-2022.0/common/include/MetaSpriteInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/include/MetaSpriteInfo.h -------------------------------------------------------------------------------- /ZGB-2022.0/common/include/Music.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/include/Music.h -------------------------------------------------------------------------------- /ZGB-2022.0/common/include/OAMManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/include/OAMManager.h -------------------------------------------------------------------------------- /ZGB-2022.0/common/include/Palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/include/Palette.h -------------------------------------------------------------------------------- /ZGB-2022.0/common/include/Print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/include/Print.h -------------------------------------------------------------------------------- /ZGB-2022.0/common/include/SGB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/include/SGB.h -------------------------------------------------------------------------------- /ZGB-2022.0/common/include/SRAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/include/SRAM.h -------------------------------------------------------------------------------- /ZGB-2022.0/common/include/Scroll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/include/Scroll.h -------------------------------------------------------------------------------- /ZGB-2022.0/common/include/Sound.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/include/Sound.h -------------------------------------------------------------------------------- /ZGB-2022.0/common/include/Sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/include/Sprite.h -------------------------------------------------------------------------------- /ZGB-2022.0/common/include/SpriteManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/include/SpriteManager.h -------------------------------------------------------------------------------- /ZGB-2022.0/common/include/Stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/include/Stack.h -------------------------------------------------------------------------------- /ZGB-2022.0/common/include/TilesInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/include/TilesInfo.h -------------------------------------------------------------------------------- /ZGB-2022.0/common/include/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/include/Vector.h -------------------------------------------------------------------------------- /ZGB-2022.0/common/include/ZGBMain_Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/include/ZGBMain_Init.h -------------------------------------------------------------------------------- /ZGB-2022.0/common/include/gbt_player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/include/gbt_player.h -------------------------------------------------------------------------------- /ZGB-2022.0/common/include/hUGEDriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/include/hUGEDriver.h -------------------------------------------------------------------------------- /ZGB-2022.0/common/include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/include/main.h -------------------------------------------------------------------------------- /ZGB-2022.0/common/lib/hUGEDriver.obj.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/lib/hUGEDriver.obj.o -------------------------------------------------------------------------------- /ZGB-2022.0/common/src/BankManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/src/BankManager.c -------------------------------------------------------------------------------- /ZGB-2022.0/common/src/Fade.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/src/Fade.c -------------------------------------------------------------------------------- /ZGB-2022.0/common/src/Fade_b.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/src/Fade_b.c -------------------------------------------------------------------------------- /ZGB-2022.0/common/src/Keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/src/Keys.c -------------------------------------------------------------------------------- /ZGB-2022.0/common/src/Makefile: -------------------------------------------------------------------------------- 1 | run: 2 | 3 | clean: -------------------------------------------------------------------------------- /ZGB-2022.0/common/src/MakefileCommon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/src/MakefileCommon -------------------------------------------------------------------------------- /ZGB-2022.0/common/src/Math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/src/Math.c -------------------------------------------------------------------------------- /ZGB-2022.0/common/src/Music.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/src/Music.c -------------------------------------------------------------------------------- /ZGB-2022.0/common/src/OAMManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/src/OAMManager.c -------------------------------------------------------------------------------- /ZGB-2022.0/common/src/Print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/src/Print.c -------------------------------------------------------------------------------- /ZGB-2022.0/common/src/SGB.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/src/SGB.c -------------------------------------------------------------------------------- /ZGB-2022.0/common/src/SRAM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/src/SRAM.c -------------------------------------------------------------------------------- /ZGB-2022.0/common/src/Scroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/src/Scroll.c -------------------------------------------------------------------------------- /ZGB-2022.0/common/src/Sound.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/src/Sound.c -------------------------------------------------------------------------------- /ZGB-2022.0/common/src/Sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/src/Sprite.c -------------------------------------------------------------------------------- /ZGB-2022.0/common/src/SpriteManager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/src/SpriteManager.c -------------------------------------------------------------------------------- /ZGB-2022.0/common/src/Vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/src/Vector.c -------------------------------------------------------------------------------- /ZGB-2022.0/common/src/ZGBMain_Init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/src/ZGBMain_Init.c -------------------------------------------------------------------------------- /ZGB-2022.0/common/src/gbt_player.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/src/gbt_player.s -------------------------------------------------------------------------------- /ZGB-2022.0/common/src/gbt_player_bank1.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/src/gbt_player_bank1.s -------------------------------------------------------------------------------- /ZGB-2022.0/common/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/common/src/main.c -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/10-bgpaletteset.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/10-bgpaletteset.PNG -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/11-exportsettings.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/11-exportsettings.PNG -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/12-labelName.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/12-labelName.PNG -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/13-spritecolored.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/13-spritecolored.PNG -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/14-bgbsettings.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/14-bgbsettings.PNG -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/15-enemycolored.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/15-enemycolored.PNG -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/2-anim.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/2-anim.PNG -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/3-bad collision.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/3-bad collision.PNG -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/4-Location Format.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/4-Location Format.PNG -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/5-enemy.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/5-enemy.PNG -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/5b-enemyExport.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/5b-enemyExport.PNG -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/6-map.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/6-map.PNG -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/7-thumb.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/7-thumb.PNG -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/8-mapenemies.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/8-mapenemies.PNG -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/9-paletteChoose.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/9-paletteChoose.PNG -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/bgb00003.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/bgb00003.bmp -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/bgb00004.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/bgb00004.bmp -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/bgb00006.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/bgb00006.bmp -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/bgb00007.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/bgb00007.bmp -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/bgb00008.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/bgb00008.bmp -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/bgb00009.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/bgb00009.bmp -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/enemyColored.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/enemyColored.bmp -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/envPath.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/envPath.PNG -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/hud_ingame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/hud_ingame.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/hud_ingame_palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/hud_ingame_palette.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/hud_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/hud_map.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/hud_palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/hud_palette.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/hud_tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/hud_tiles.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/mod1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/mod1.JPG -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/mod2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/mod2.JPG -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/readme/ZGB-loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/readme/ZGB-loop.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/readme/coll_down.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/readme/coll_down.gif -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/readme/collider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/readme/collider.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/readme/mirrors.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/readme/mirrors.gif -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/readme/scroll.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/readme/scroll.gif -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/acattag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/acattag.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/ancient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/ancient.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/axebound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/axebound.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/basketcase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/basketcase.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/bounmaze.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/bounmaze.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/cavern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/cavern.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/chainbreak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/chainbreak.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/deck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/deck.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/dungeonball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/dungeonball.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/espetoblast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/espetoblast.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/fairywowings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/fairywowings.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/futurePizza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/futurePizza.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/fuzzy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/fuzzy.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/giant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/giant.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/grimoire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/grimoire.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/guardianghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/guardianghost.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/hungrybirds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/hungrybirds.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/hungrymonster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/hungrymonster.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/impossiblegameboy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/impossiblegameboy.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/initialD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/initialD.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/kaijufeeder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/kaijufeeder.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/luna.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/luna.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/minigolf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/minigolf.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/mona.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/mona.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/muffinalpaca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/muffinalpaca.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/outofcontrol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/outofcontrol.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/pineapplekid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/pineapplekid.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/pluto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/pluto.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/polkasheep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/polkasheep.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/powa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/powa.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/prettyprincess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/prettyprincess.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/rc-shuriken.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/rc-shuriken.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/rick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/rick.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/shieldbouncer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/shieldbouncer.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/shipping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/shipping.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/sovietsnake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/sovietsnake.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/superprincess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/superprincess.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/sushinights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/sushinights.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/theReckoning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/theReckoning.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/thesquire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/thesquire.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/topopajaros.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/topopajaros.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/upwel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/upwel.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/vel-cro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/vel-cro.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/velcrogolf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/velcrogolf.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/velcroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/velcroid.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/velcroid0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/velcroid0.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/showcase/woolball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/showcase/woolball.png -------------------------------------------------------------------------------- /ZGB-2022.0/doc files/tuto.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/doc files/tuto.gif -------------------------------------------------------------------------------- /ZGB-2022.0/install.bat: -------------------------------------------------------------------------------- 1 | setx ZGB_PATH "%cd%\common" 2 | -------------------------------------------------------------------------------- /ZGB-2022.0/tools/gbm2c/GBMS9910.DOC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/tools/gbm2c/GBMS9910.DOC.pdf -------------------------------------------------------------------------------- /ZGB-2022.0/tools/gbm2c/gbm2c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/tools/gbm2c/gbm2c.cpp -------------------------------------------------------------------------------- /ZGB-2022.0/tools/gbm2c/gbm2c.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/tools/gbm2c/gbm2c.exe -------------------------------------------------------------------------------- /ZGB-2022.0/tools/gbm2c/gbm2c.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/tools/gbm2c/gbm2c.sln -------------------------------------------------------------------------------- /ZGB-2022.0/tools/gbm2c/gbm2c.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/tools/gbm2c/gbm2c.vcxproj -------------------------------------------------------------------------------- /ZGB-2022.0/tools/gbm2c/gbm2c.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/tools/gbm2c/gbm2c.vcxproj.filters -------------------------------------------------------------------------------- /ZGB-2022.0/tools/gbr2c/GBRS9906.DOC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/tools/gbr2c/GBRS9906.DOC.pdf -------------------------------------------------------------------------------- /ZGB-2022.0/tools/gbr2c/gbr2c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/tools/gbr2c/gbr2c.cpp -------------------------------------------------------------------------------- /ZGB-2022.0/tools/gbr2c/gbr2c.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/tools/gbr2c/gbr2c.exe -------------------------------------------------------------------------------- /ZGB-2022.0/tools/gbr2c/gbr2c.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/tools/gbr2c/gbr2c.sln -------------------------------------------------------------------------------- /ZGB-2022.0/tools/gbr2c/gbr2c.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/tools/gbr2c/gbr2c.vcxproj -------------------------------------------------------------------------------- /ZGB-2022.0/tools/gbr2c/gbr2c.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/tools/gbr2c/gbr2c.vcxproj.filters -------------------------------------------------------------------------------- /ZGB-2022.0/tools/gbr2c/gbrParser .cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/tools/gbr2c/gbrParser .cpp -------------------------------------------------------------------------------- /ZGB-2022.0/tools/gbr2c/gbrParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/tools/gbr2c/gbrParser.h -------------------------------------------------------------------------------- /ZGB-2022.0/tools/gbr2png/gbr2png.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/tools/gbr2png/gbr2png.cpp -------------------------------------------------------------------------------- /ZGB-2022.0/tools/gbr2png/gbr2png.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/tools/gbr2png/gbr2png.exe -------------------------------------------------------------------------------- /ZGB-2022.0/tools/gbr2png/gbr2png.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/tools/gbr2png/gbr2png.sln -------------------------------------------------------------------------------- /ZGB-2022.0/tools/gbr2png/gbr2png.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/tools/gbr2png/gbr2png.vcxproj -------------------------------------------------------------------------------- /ZGB-2022.0/tools/gbr2png/gbr2png.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/tools/gbr2png/gbr2png.vcxproj.filters -------------------------------------------------------------------------------- /ZGB-2022.0/tools/gbr2png/lodepng/lodepng.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/tools/gbr2png/lodepng/lodepng.cpp -------------------------------------------------------------------------------- /ZGB-2022.0/tools/gbr2png/lodepng/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-2022.0/tools/gbr2png/lodepng/lodepng.h -------------------------------------------------------------------------------- /ZGB-template.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-template.sln -------------------------------------------------------------------------------- /ZGB-template.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-template.vcxproj -------------------------------------------------------------------------------- /ZGB-template.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/ZGB-template.vcxproj.filters -------------------------------------------------------------------------------- /clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/clean.bat -------------------------------------------------------------------------------- /include/ZGBMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/include/ZGBMain.h -------------------------------------------------------------------------------- /paleta_gb_clasica.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/paleta_gb_clasica.png -------------------------------------------------------------------------------- /res/cementerio1.gbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/cementerio1.gbm -------------------------------------------------------------------------------- /res/cementerio2.gbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/cementerio2.gbm -------------------------------------------------------------------------------- /res/cementerio_tiles.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/cementerio_tiles.gbr -------------------------------------------------------------------------------- /res/desierto.gbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/desierto.gbm -------------------------------------------------------------------------------- /res/font.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/font.gbr -------------------------------------------------------------------------------- /res/hud.gbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/hud.gbm -------------------------------------------------------------------------------- /res/music/cemetery.uge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/music/cemetery.uge -------------------------------------------------------------------------------- /res/music/creditos.uge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/music/creditos.uge -------------------------------------------------------------------------------- /res/music/deadboy.uge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/music/deadboy.uge -------------------------------------------------------------------------------- /res/music/gameover.uge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/music/gameover.uge -------------------------------------------------------------------------------- /res/music/intro.uge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/music/intro.uge -------------------------------------------------------------------------------- /res/music/level_start.uge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/music/level_start.uge -------------------------------------------------------------------------------- /res/music/muerte.uge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/music/muerte.uge -------------------------------------------------------------------------------- /res/music/piramide_dentro.uge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/music/piramide_dentro.uge -------------------------------------------------------------------------------- /res/music/selva.uge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/music/selva.uge -------------------------------------------------------------------------------- /res/music/stageclear.uge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/music/stageclear.uge -------------------------------------------------------------------------------- /res/music/title.uge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/music/title.uge -------------------------------------------------------------------------------- /res/piramidemapa.gbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/piramidemapa.gbm -------------------------------------------------------------------------------- /res/piramidetiles.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/piramidetiles.gbr -------------------------------------------------------------------------------- /res/pueblo2.gbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/pueblo2.gbm -------------------------------------------------------------------------------- /res/pueblo_tiles2.gbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/pueblo_tiles2.gbr -------------------------------------------------------------------------------- /res/selvamap.gbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/selvamap.gbm -------------------------------------------------------------------------------- /res/sprites/Export.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/Export.c -------------------------------------------------------------------------------- /res/sprites/antorcha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/antorcha.png -------------------------------------------------------------------------------- /res/sprites/antorcha.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/antorcha.png.meta -------------------------------------------------------------------------------- /res/sprites/bola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/bola.png -------------------------------------------------------------------------------- /res/sprites/bola.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/bola.png.meta -------------------------------------------------------------------------------- /res/sprites/bomba.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/bomba.png -------------------------------------------------------------------------------- /res/sprites/bomba.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/bomba.png.meta -------------------------------------------------------------------------------- /res/sprites/bomba_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/bomba_item.png -------------------------------------------------------------------------------- /res/sprites/bomba_item.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/bomba_item.png.meta -------------------------------------------------------------------------------- /res/sprites/calabaza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/calabaza.png -------------------------------------------------------------------------------- /res/sprites/calabaza.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/calabaza.png.meta -------------------------------------------------------------------------------- /res/sprites/calavera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/calavera.png -------------------------------------------------------------------------------- /res/sprites/calavera.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/calavera.png.meta -------------------------------------------------------------------------------- /res/sprites/compo_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/compo_logo.png -------------------------------------------------------------------------------- /res/sprites/compo_logo.png.meta: -------------------------------------------------------------------------------- 1 | -map -noflip -------------------------------------------------------------------------------- /res/sprites/corazon_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/corazon_item.png -------------------------------------------------------------------------------- /res/sprites/corazon_item.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/corazon_item.png.meta -------------------------------------------------------------------------------- /res/sprites/craneo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/craneo.png -------------------------------------------------------------------------------- /res/sprites/craneo.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/craneo.png.meta -------------------------------------------------------------------------------- /res/sprites/credits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/credits.png -------------------------------------------------------------------------------- /res/sprites/credits.png.meta: -------------------------------------------------------------------------------- 1 | -map -noflip -------------------------------------------------------------------------------- /res/sprites/enemy_bullet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/enemy_bullet.png -------------------------------------------------------------------------------- /res/sprites/enemy_bullet.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/enemy_bullet.png.meta -------------------------------------------------------------------------------- /res/sprites/entra_piramide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/entra_piramide.png -------------------------------------------------------------------------------- /res/sprites/entra_piramide.png.meta: -------------------------------------------------------------------------------- 1 | -map -noflip -------------------------------------------------------------------------------- /res/sprites/flecha_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/flecha_in.png -------------------------------------------------------------------------------- /res/sprites/flecha_in.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/flecha_in.png.meta -------------------------------------------------------------------------------- /res/sprites/gameover_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/gameover_screen.png -------------------------------------------------------------------------------- /res/sprites/gameover_screen.png.meta: -------------------------------------------------------------------------------- 1 | -map -noflip -------------------------------------------------------------------------------- /res/sprites/intro1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/intro1.png -------------------------------------------------------------------------------- /res/sprites/intro1.png.meta: -------------------------------------------------------------------------------- 1 | -map -noflip -------------------------------------------------------------------------------- /res/sprites/intro2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/intro2.png -------------------------------------------------------------------------------- /res/sprites/intro2.png.meta: -------------------------------------------------------------------------------- 1 | -map -noflip -------------------------------------------------------------------------------- /res/sprites/intro3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/intro3.png -------------------------------------------------------------------------------- /res/sprites/intro3.png.meta: -------------------------------------------------------------------------------- 1 | -map -noflip -------------------------------------------------------------------------------- /res/sprites/intro4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/intro4.png -------------------------------------------------------------------------------- /res/sprites/intro4.png.meta: -------------------------------------------------------------------------------- 1 | -map -noflip -------------------------------------------------------------------------------- /res/sprites/item_1up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/item_1up.png -------------------------------------------------------------------------------- /res/sprites/item_1up.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/item_1up.png.meta -------------------------------------------------------------------------------- /res/sprites/llave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/llave.png -------------------------------------------------------------------------------- /res/sprites/llave.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/llave.png.meta -------------------------------------------------------------------------------- /res/sprites/luchador.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/luchador.png -------------------------------------------------------------------------------- /res/sprites/luchador.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/luchador.png.meta -------------------------------------------------------------------------------- /res/sprites/mano.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/mano.png -------------------------------------------------------------------------------- /res/sprites/mano.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/mano.png.meta -------------------------------------------------------------------------------- /res/sprites/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/menu.png -------------------------------------------------------------------------------- /res/sprites/menu.png.meta: -------------------------------------------------------------------------------- 1 | -map -noflip -------------------------------------------------------------------------------- /res/sprites/murcielago.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/murcielago.png -------------------------------------------------------------------------------- /res/sprites/murcielago.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/murcielago.png.meta -------------------------------------------------------------------------------- /res/sprites/ojos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/ojos.png -------------------------------------------------------------------------------- /res/sprites/ojos.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/ojos.png.meta -------------------------------------------------------------------------------- /res/sprites/pajarraco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/pajarraco.png -------------------------------------------------------------------------------- /res/sprites/pajarraco.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/pajarraco.png.meta -------------------------------------------------------------------------------- /res/sprites/parca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/parca.png -------------------------------------------------------------------------------- /res/sprites/parca.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/parca.png.meta -------------------------------------------------------------------------------- /res/sprites/pat_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/pat_logo.png -------------------------------------------------------------------------------- /res/sprites/pat_logo.png.meta: -------------------------------------------------------------------------------- 1 | -map -noflip -------------------------------------------------------------------------------- /res/sprites/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/platform.png -------------------------------------------------------------------------------- /res/sprites/platform.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/platform.png.meta -------------------------------------------------------------------------------- /res/sprites/press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/press.png -------------------------------------------------------------------------------- /res/sprites/press.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/press.png.meta -------------------------------------------------------------------------------- /res/sprites/rompibles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/rompibles.png -------------------------------------------------------------------------------- /res/sprites/rompibles.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/rompibles.png.meta -------------------------------------------------------------------------------- /res/sprites/soul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/soul.png -------------------------------------------------------------------------------- /res/sprites/soul.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/soul.png.meta -------------------------------------------------------------------------------- /res/sprites/titulo_cementerio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/titulo_cementerio.png -------------------------------------------------------------------------------- /res/sprites/titulo_cementerio.png.meta: -------------------------------------------------------------------------------- 1 | -map -noflip -------------------------------------------------------------------------------- /res/sprites/titulo_pueblo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/titulo_pueblo.png -------------------------------------------------------------------------------- /res/sprites/titulo_pueblo.png.meta: -------------------------------------------------------------------------------- 1 | -map -noflip -------------------------------------------------------------------------------- /res/sprites/titulo_selva.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/titulo_selva.png -------------------------------------------------------------------------------- /res/sprites/titulo_selva.png.meta: -------------------------------------------------------------------------------- 1 | -map -noflip -------------------------------------------------------------------------------- /res/sprites/titulos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/titulos.png -------------------------------------------------------------------------------- /res/sprites/titulos.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/titulos.png.meta -------------------------------------------------------------------------------- /res/sprites/topo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/topo.png -------------------------------------------------------------------------------- /res/sprites/topo.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/topo.png.meta -------------------------------------------------------------------------------- /res/sprites/tutorial_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/tutorial_screen.png -------------------------------------------------------------------------------- /res/sprites/tutorial_screen.png.meta: -------------------------------------------------------------------------------- 1 | -map -noflip -------------------------------------------------------------------------------- /res/sprites/zgb_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/zgb_logo.png -------------------------------------------------------------------------------- /res/sprites/zgb_logo.png.meta: -------------------------------------------------------------------------------- 1 | -map -noflip -------------------------------------------------------------------------------- /res/sprites/zombie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/zombie.png -------------------------------------------------------------------------------- /res/sprites/zombie.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/res/sprites/zombie.png.meta -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Sprite1up.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/Sprite1up.c -------------------------------------------------------------------------------- /src/SpriteAntorcha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/SpriteAntorcha.c -------------------------------------------------------------------------------- /src/SpriteAutoScroll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/SpriteAutoScroll.c -------------------------------------------------------------------------------- /src/SpriteAutoScrollCredits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/SpriteAutoScrollCredits.c -------------------------------------------------------------------------------- /src/SpriteBomba.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/SpriteBomba.c -------------------------------------------------------------------------------- /src/SpriteBombaItem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/SpriteBombaItem.c -------------------------------------------------------------------------------- /src/SpriteCalabaza.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/SpriteCalabaza.c -------------------------------------------------------------------------------- /src/SpriteCojon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/SpriteCojon.c -------------------------------------------------------------------------------- /src/SpriteCorazonItem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/SpriteCorazonItem.c -------------------------------------------------------------------------------- /src/SpriteCraneo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/SpriteCraneo.c -------------------------------------------------------------------------------- /src/SpriteEnemigo1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/SpriteEnemigo1.c -------------------------------------------------------------------------------- /src/SpriteEnemigo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/SpriteEnemigo2.c -------------------------------------------------------------------------------- /src/SpriteEnemigo3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/SpriteEnemigo3.c -------------------------------------------------------------------------------- /src/SpriteEnemyProyectile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/SpriteEnemyProyectile.c -------------------------------------------------------------------------------- /src/SpriteFlechaIn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/SpriteFlechaIn.c -------------------------------------------------------------------------------- /src/SpriteLlave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/SpriteLlave.c -------------------------------------------------------------------------------- /src/SpriteOjillos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/SpriteOjillos.c -------------------------------------------------------------------------------- /src/SpritePajaro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/SpritePajaro.c -------------------------------------------------------------------------------- /src/SpritePlataforma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/SpritePlataforma.c -------------------------------------------------------------------------------- /src/SpritePlayer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/SpritePlayer.c -------------------------------------------------------------------------------- /src/SpritePress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/SpritePress.c -------------------------------------------------------------------------------- /src/SpriteRompible.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/SpriteRompible.c -------------------------------------------------------------------------------- /src/SpriteSoul.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/SpriteSoul.c -------------------------------------------------------------------------------- /src/SpriteTitulo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/SpriteTitulo.c -------------------------------------------------------------------------------- /src/SpriteTopo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/SpriteTopo.c -------------------------------------------------------------------------------- /src/SpriteZombie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/SpriteZombie.c -------------------------------------------------------------------------------- /src/StateChangeLevel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/StateChangeLevel.c -------------------------------------------------------------------------------- /src/StateCredits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/StateCredits.c -------------------------------------------------------------------------------- /src/StateGame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/StateGame.c -------------------------------------------------------------------------------- /src/StateGameOver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/StateGameOver.c -------------------------------------------------------------------------------- /src/StateIntro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/StateIntro.c -------------------------------------------------------------------------------- /src/StateMenu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/StateMenu.c -------------------------------------------------------------------------------- /src/StateTituloNivel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/StateTituloNivel.c -------------------------------------------------------------------------------- /src/ZGBMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greenwebsevilla/Hermano/HEAD/src/ZGBMain.c --------------------------------------------------------------------------------