├── fontes ├── arial.ttf ├── flips.ttf ├── futura.ttf └── padrao.ttf ├── include ├── AjustesEAtualizacoes.h ├── AlgoritmoGenetico.h ├── Bibliotecas_Basicas.h ├── CAnimacao.h ├── CAssetLoader.h ├── CGeradorParticulas.h ├── CGerenciadorAnimacoes.h ├── CGerenciadorObjetos.h ├── CGerenciadorParticulas.h ├── CGerenciadorTimers.h ├── CJogo.h ├── CMapaCaracteres.h ├── CMouse.h ├── CObjeto.h ├── COffscreenRenderer.h ├── CParticula.h ├── CPilhaCoordenada.h ├── CPoolNumeros.h ├── CTimer.h ├── Codigos.h ├── Colisao.h ├── Desenhar.h ├── ForcaClass.h ├── ImagemDeFundo.h ├── ManipularCentroDeMassa.h ├── ManipularEsferas.h ├── ManipularEspaco.h ├── MouseETeclado.h ├── PIG.h ├── PIG_Animations.h ├── PIG_Fontes.h ├── PIG_Geometricos.h ├── PIG_Jogo.h ├── PIG_Objetos.h ├── PIG_Pack.h ├── PIG_Timers.h ├── PIG_Variaveis.h ├── SDL_Pack.h ├── SDL_image │ ├── IMG.c │ ├── IMG_bmp.c │ ├── IMG_gif.c │ ├── IMG_jpg.c │ ├── IMG_lbm.c │ ├── IMG_pcx.c │ ├── IMG_png.c │ ├── IMG_pnm.c │ ├── IMG_tga.c │ ├── IMG_tif.c │ ├── IMG_webp.c │ ├── IMG_xcf.c │ ├── IMG_xpm.c │ ├── IMG_xv.c │ ├── IMG_xxx.c │ ├── SDL_image.h │ ├── miniz.h │ └── showimage.c ├── SalvarECarregarSistemas.h ├── Teclas.h ├── TexturasEAvisos.h ├── Tipos.h ├── Tipos_PIG.h ├── Variaveis.h └── Victor.h ├── lib ├── libSDL2.a ├── libSDL2.dll.a ├── libSDL2.la ├── libSDL2_image.a ├── libSDL2_image.dll.a ├── libSDL2_image.la ├── libSDL2_test.a ├── libSDL2_ttf.a ├── libSDL2_ttf.dll.a ├── libSDL2_ttf.la └── libSDL2main.a └── src ├── Editor.exe ├── Projeto.cbp ├── Projeto.cscope_file_list ├── Projeto.depend ├── Projeto.layout ├── SDL2.dll ├── SDL2_image.dll ├── SDL2_ttf.dll ├── imagens ├── final.png ├── inicio.png ├── luzBranca.png ├── moeda.bmp ├── obstaculo.bmp └── x1.png ├── libfreetype-6.dll ├── libjpeg-9.dll ├── libpng16-16.dll ├── libtiff-5.dll ├── libwebp-4.dll ├── main.cpp ├── main.o ├── mapas ├── mapa0 ├── mapa1 ├── mapa10 ├── mapa11 ├── mapa12 ├── mapa13 ├── mapa14 ├── mapa15 ├── mapa16 ├── mapa17 ├── mapa18 ├── mapa19 ├── mapa2 ├── mapa20 ├── mapa21 ├── mapa22 ├── mapa23 ├── mapa24 ├── mapa25 ├── mapa26 ├── mapa27 ├── mapa28 ├── mapa29 ├── mapa3 ├── mapa30 ├── mapa31 ├── mapa32 ├── mapa4 ├── mapa5 ├── mapa6 ├── mapa7 ├── mapa8 └── mapa9 └── zlib1.dll /fontes/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/fontes/arial.ttf -------------------------------------------------------------------------------- /fontes/flips.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/fontes/flips.ttf -------------------------------------------------------------------------------- /fontes/futura.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/fontes/futura.ttf -------------------------------------------------------------------------------- /fontes/padrao.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/fontes/padrao.ttf -------------------------------------------------------------------------------- /include/AjustesEAtualizacoes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/AjustesEAtualizacoes.h -------------------------------------------------------------------------------- /include/AlgoritmoGenetico.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/AlgoritmoGenetico.h -------------------------------------------------------------------------------- /include/Bibliotecas_Basicas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/Bibliotecas_Basicas.h -------------------------------------------------------------------------------- /include/CAnimacao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/CAnimacao.h -------------------------------------------------------------------------------- /include/CAssetLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/CAssetLoader.h -------------------------------------------------------------------------------- /include/CGeradorParticulas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/CGeradorParticulas.h -------------------------------------------------------------------------------- /include/CGerenciadorAnimacoes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/CGerenciadorAnimacoes.h -------------------------------------------------------------------------------- /include/CGerenciadorObjetos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/CGerenciadorObjetos.h -------------------------------------------------------------------------------- /include/CGerenciadorParticulas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/CGerenciadorParticulas.h -------------------------------------------------------------------------------- /include/CGerenciadorTimers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/CGerenciadorTimers.h -------------------------------------------------------------------------------- /include/CJogo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/CJogo.h -------------------------------------------------------------------------------- /include/CMapaCaracteres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/CMapaCaracteres.h -------------------------------------------------------------------------------- /include/CMouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/CMouse.h -------------------------------------------------------------------------------- /include/CObjeto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/CObjeto.h -------------------------------------------------------------------------------- /include/COffscreenRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/COffscreenRenderer.h -------------------------------------------------------------------------------- /include/CParticula.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/CParticula.h -------------------------------------------------------------------------------- /include/CPilhaCoordenada.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/CPilhaCoordenada.h -------------------------------------------------------------------------------- /include/CPoolNumeros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/CPoolNumeros.h -------------------------------------------------------------------------------- /include/CTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/CTimer.h -------------------------------------------------------------------------------- /include/Codigos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/Codigos.h -------------------------------------------------------------------------------- /include/Colisao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/Colisao.h -------------------------------------------------------------------------------- /include/Desenhar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/Desenhar.h -------------------------------------------------------------------------------- /include/ForcaClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/ForcaClass.h -------------------------------------------------------------------------------- /include/ImagemDeFundo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/ImagemDeFundo.h -------------------------------------------------------------------------------- /include/ManipularCentroDeMassa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/ManipularCentroDeMassa.h -------------------------------------------------------------------------------- /include/ManipularEsferas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/ManipularEsferas.h -------------------------------------------------------------------------------- /include/ManipularEspaco.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/ManipularEspaco.h -------------------------------------------------------------------------------- /include/MouseETeclado.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/MouseETeclado.h -------------------------------------------------------------------------------- /include/PIG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/PIG.h -------------------------------------------------------------------------------- /include/PIG_Animations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/PIG_Animations.h -------------------------------------------------------------------------------- /include/PIG_Fontes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/PIG_Fontes.h -------------------------------------------------------------------------------- /include/PIG_Geometricos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/PIG_Geometricos.h -------------------------------------------------------------------------------- /include/PIG_Jogo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/PIG_Jogo.h -------------------------------------------------------------------------------- /include/PIG_Objetos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/PIG_Objetos.h -------------------------------------------------------------------------------- /include/PIG_Pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/PIG_Pack.h -------------------------------------------------------------------------------- /include/PIG_Timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/PIG_Timers.h -------------------------------------------------------------------------------- /include/PIG_Variaveis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/PIG_Variaveis.h -------------------------------------------------------------------------------- /include/SDL_Pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/SDL_Pack.h -------------------------------------------------------------------------------- /include/SDL_image/IMG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/SDL_image/IMG.c -------------------------------------------------------------------------------- /include/SDL_image/IMG_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/SDL_image/IMG_bmp.c -------------------------------------------------------------------------------- /include/SDL_image/IMG_gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/SDL_image/IMG_gif.c -------------------------------------------------------------------------------- /include/SDL_image/IMG_jpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/SDL_image/IMG_jpg.c -------------------------------------------------------------------------------- /include/SDL_image/IMG_lbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/SDL_image/IMG_lbm.c -------------------------------------------------------------------------------- /include/SDL_image/IMG_pcx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/SDL_image/IMG_pcx.c -------------------------------------------------------------------------------- /include/SDL_image/IMG_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/SDL_image/IMG_png.c -------------------------------------------------------------------------------- /include/SDL_image/IMG_pnm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/SDL_image/IMG_pnm.c -------------------------------------------------------------------------------- /include/SDL_image/IMG_tga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/SDL_image/IMG_tga.c -------------------------------------------------------------------------------- /include/SDL_image/IMG_tif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/SDL_image/IMG_tif.c -------------------------------------------------------------------------------- /include/SDL_image/IMG_webp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/SDL_image/IMG_webp.c -------------------------------------------------------------------------------- /include/SDL_image/IMG_xcf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/SDL_image/IMG_xcf.c -------------------------------------------------------------------------------- /include/SDL_image/IMG_xpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/SDL_image/IMG_xpm.c -------------------------------------------------------------------------------- /include/SDL_image/IMG_xv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/SDL_image/IMG_xv.c -------------------------------------------------------------------------------- /include/SDL_image/IMG_xxx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/SDL_image/IMG_xxx.c -------------------------------------------------------------------------------- /include/SDL_image/SDL_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/SDL_image/SDL_image.h -------------------------------------------------------------------------------- /include/SDL_image/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/SDL_image/miniz.h -------------------------------------------------------------------------------- /include/SDL_image/showimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/SDL_image/showimage.c -------------------------------------------------------------------------------- /include/SalvarECarregarSistemas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/SalvarECarregarSistemas.h -------------------------------------------------------------------------------- /include/Teclas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/Teclas.h -------------------------------------------------------------------------------- /include/TexturasEAvisos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/TexturasEAvisos.h -------------------------------------------------------------------------------- /include/Tipos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/Tipos.h -------------------------------------------------------------------------------- /include/Tipos_PIG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/Tipos_PIG.h -------------------------------------------------------------------------------- /include/Variaveis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/Variaveis.h -------------------------------------------------------------------------------- /include/Victor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/include/Victor.h -------------------------------------------------------------------------------- /lib/libSDL2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/lib/libSDL2.a -------------------------------------------------------------------------------- /lib/libSDL2.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/lib/libSDL2.dll.a -------------------------------------------------------------------------------- /lib/libSDL2.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/lib/libSDL2.la -------------------------------------------------------------------------------- /lib/libSDL2_image.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/lib/libSDL2_image.a -------------------------------------------------------------------------------- /lib/libSDL2_image.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/lib/libSDL2_image.dll.a -------------------------------------------------------------------------------- /lib/libSDL2_image.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/lib/libSDL2_image.la -------------------------------------------------------------------------------- /lib/libSDL2_test.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/lib/libSDL2_test.a -------------------------------------------------------------------------------- /lib/libSDL2_ttf.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/lib/libSDL2_ttf.a -------------------------------------------------------------------------------- /lib/libSDL2_ttf.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/lib/libSDL2_ttf.dll.a -------------------------------------------------------------------------------- /lib/libSDL2_ttf.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/lib/libSDL2_ttf.la -------------------------------------------------------------------------------- /lib/libSDL2main.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/lib/libSDL2main.a -------------------------------------------------------------------------------- /src/Editor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/Editor.exe -------------------------------------------------------------------------------- /src/Projeto.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/Projeto.cbp -------------------------------------------------------------------------------- /src/Projeto.cscope_file_list: -------------------------------------------------------------------------------- 1 | "E:\Canal Youtube\[Importante] Códigos\7 - Zerando o jogo mais difícil\PIGv0.5.1\src\main.cpp" 2 | -------------------------------------------------------------------------------- /src/Projeto.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/Projeto.depend -------------------------------------------------------------------------------- /src/Projeto.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/Projeto.layout -------------------------------------------------------------------------------- /src/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/SDL2.dll -------------------------------------------------------------------------------- /src/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/SDL2_image.dll -------------------------------------------------------------------------------- /src/SDL2_ttf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/SDL2_ttf.dll -------------------------------------------------------------------------------- /src/imagens/final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/imagens/final.png -------------------------------------------------------------------------------- /src/imagens/inicio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/imagens/inicio.png -------------------------------------------------------------------------------- /src/imagens/luzBranca.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/imagens/luzBranca.png -------------------------------------------------------------------------------- /src/imagens/moeda.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/imagens/moeda.bmp -------------------------------------------------------------------------------- /src/imagens/obstaculo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/imagens/obstaculo.bmp -------------------------------------------------------------------------------- /src/imagens/x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/imagens/x1.png -------------------------------------------------------------------------------- /src/libfreetype-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/libfreetype-6.dll -------------------------------------------------------------------------------- /src/libjpeg-9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/libjpeg-9.dll -------------------------------------------------------------------------------- /src/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/libpng16-16.dll -------------------------------------------------------------------------------- /src/libtiff-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/libtiff-5.dll -------------------------------------------------------------------------------- /src/libwebp-4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/libwebp-4.dll -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/main.o -------------------------------------------------------------------------------- /src/mapas/mapa0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa0 -------------------------------------------------------------------------------- /src/mapas/mapa1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa1 -------------------------------------------------------------------------------- /src/mapas/mapa10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa10 -------------------------------------------------------------------------------- /src/mapas/mapa11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa11 -------------------------------------------------------------------------------- /src/mapas/mapa12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa12 -------------------------------------------------------------------------------- /src/mapas/mapa13: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa13 -------------------------------------------------------------------------------- /src/mapas/mapa14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa14 -------------------------------------------------------------------------------- /src/mapas/mapa15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa15 -------------------------------------------------------------------------------- /src/mapas/mapa16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa16 -------------------------------------------------------------------------------- /src/mapas/mapa17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa17 -------------------------------------------------------------------------------- /src/mapas/mapa18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa18 -------------------------------------------------------------------------------- /src/mapas/mapa19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa19 -------------------------------------------------------------------------------- /src/mapas/mapa2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa2 -------------------------------------------------------------------------------- /src/mapas/mapa20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa20 -------------------------------------------------------------------------------- /src/mapas/mapa21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa21 -------------------------------------------------------------------------------- /src/mapas/mapa22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa22 -------------------------------------------------------------------------------- /src/mapas/mapa23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa23 -------------------------------------------------------------------------------- /src/mapas/mapa24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa24 -------------------------------------------------------------------------------- /src/mapas/mapa25: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa25 -------------------------------------------------------------------------------- /src/mapas/mapa26: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa26 -------------------------------------------------------------------------------- /src/mapas/mapa27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa27 -------------------------------------------------------------------------------- /src/mapas/mapa28: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa28 -------------------------------------------------------------------------------- /src/mapas/mapa29: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa29 -------------------------------------------------------------------------------- /src/mapas/mapa3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa3 -------------------------------------------------------------------------------- /src/mapas/mapa30: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa30 -------------------------------------------------------------------------------- /src/mapas/mapa31: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa31 -------------------------------------------------------------------------------- /src/mapas/mapa32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa32 -------------------------------------------------------------------------------- /src/mapas/mapa4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa4 -------------------------------------------------------------------------------- /src/mapas/mapa5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa5 -------------------------------------------------------------------------------- /src/mapas/mapa6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa6 -------------------------------------------------------------------------------- /src/mapas/mapa7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa7 -------------------------------------------------------------------------------- /src/mapas/mapa8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa8 -------------------------------------------------------------------------------- /src/mapas/mapa9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/mapas/mapa9 -------------------------------------------------------------------------------- /src/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/HardestGameEditor/HEAD/src/zlib1.dll --------------------------------------------------------------------------------