├── bin ├── SDL2.dll ├── SDL2_image.dll ├── SDL2_ttf.dll ├── libfreetype-6.dll ├── libjpeg-9.dll ├── libpng16-16.dll ├── libtiff-5.dll ├── libwebp-4.dll └── zlib1.dll ├── fontes └── arial.ttf ├── include ├── 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 ├── PIG.h ├── PIG_Desenhos.h ├── PIG_Extras.c ├── PIG_Fontes.h ├── PIG_Jogo.h ├── PIG_Sprites.h ├── PIG_Timers.h ├── SDL │ ├── SDL.h │ ├── SDL_assert.h │ ├── SDL_atomic.h │ ├── SDL_audio.h │ ├── SDL_bits.h │ ├── SDL_blendmode.h │ ├── SDL_clipboard.h │ ├── SDL_config.h │ ├── SDL_cpuinfo.h │ ├── SDL_endian.h │ ├── SDL_error.h │ ├── SDL_events.h │ ├── SDL_gamecontroller.h │ ├── SDL_gesture.h │ ├── SDL_haptic.h │ ├── SDL_hints.h │ ├── SDL_joystick.h │ ├── SDL_keyboard.h │ ├── SDL_keycode.h │ ├── SDL_loadso.h │ ├── SDL_log.h │ ├── SDL_main.h │ ├── SDL_messagebox.h │ ├── SDL_mouse.h │ ├── SDL_mutex.h │ ├── SDL_name.h │ ├── SDL_opengl.h │ ├── SDL_opengles.h │ ├── SDL_opengles2.h │ ├── SDL_pixels.h │ ├── SDL_platform.h │ ├── SDL_power.h │ ├── SDL_quit.h │ ├── SDL_rect.h │ ├── SDL_render.h │ ├── SDL_revision.h │ ├── SDL_rwops.h │ ├── SDL_scancode.h │ ├── SDL_shape.h │ ├── SDL_stdinc.h │ ├── SDL_surface.h │ ├── SDL_system.h │ ├── SDL_syswm.h │ ├── SDL_test.h │ ├── SDL_test_assert.h │ ├── SDL_test_common.h │ ├── SDL_test_compare.h │ ├── SDL_test_crc32.h │ ├── SDL_test_font.h │ ├── SDL_test_fuzzer.h │ ├── SDL_test_harness.h │ ├── SDL_test_images.h │ ├── SDL_test_log.h │ ├── SDL_test_md5.h │ ├── SDL_test_random.h │ ├── SDL_thread.h │ ├── SDL_timer.h │ ├── SDL_touch.h │ ├── SDL_ttf.h │ ├── SDL_types.h │ ├── SDL_version.h │ ├── SDL_video.h │ ├── begin_code.h │ └── close_code.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 ├── Teclas.h └── Tipos_PIG.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 ├── Projeto.cbp ├── Projeto.cscope_file_list ├── Projeto.depend ├── Projeto.layout ├── SDL2.dll ├── SDL2_image.dll ├── SDL2_ttf.dll ├── imagens ├── ceu.png ├── esfera.png └── luz.png ├── libfreetype-6.dll ├── libgsl.dll ├── libgslcblas.dll ├── libjpeg-9.dll ├── libpng16-16.dll ├── libtiff-5.dll ├── libwebp-4.dll ├── main.cpp ├── main.o └── zlib1.dll /bin/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/bin/SDL2.dll -------------------------------------------------------------------------------- /bin/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/bin/SDL2_image.dll -------------------------------------------------------------------------------- /bin/SDL2_ttf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/bin/SDL2_ttf.dll -------------------------------------------------------------------------------- /bin/libfreetype-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/bin/libfreetype-6.dll -------------------------------------------------------------------------------- /bin/libjpeg-9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/bin/libjpeg-9.dll -------------------------------------------------------------------------------- /bin/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/bin/libpng16-16.dll -------------------------------------------------------------------------------- /bin/libtiff-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/bin/libtiff-5.dll -------------------------------------------------------------------------------- /bin/libwebp-4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/bin/libwebp-4.dll -------------------------------------------------------------------------------- /bin/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/bin/zlib1.dll -------------------------------------------------------------------------------- /fontes/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/fontes/arial.ttf -------------------------------------------------------------------------------- /include/CAnimacao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/CAnimacao.h -------------------------------------------------------------------------------- /include/CAssetLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/CAssetLoader.h -------------------------------------------------------------------------------- /include/CGeradorParticulas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/CGeradorParticulas.h -------------------------------------------------------------------------------- /include/CGerenciadorAnimacoes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/CGerenciadorAnimacoes.h -------------------------------------------------------------------------------- /include/CGerenciadorObjetos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/CGerenciadorObjetos.h -------------------------------------------------------------------------------- /include/CGerenciadorParticulas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/CGerenciadorParticulas.h -------------------------------------------------------------------------------- /include/CGerenciadorTimers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/CGerenciadorTimers.h -------------------------------------------------------------------------------- /include/CJogo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/CJogo.h -------------------------------------------------------------------------------- /include/CMapaCaracteres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/CMapaCaracteres.h -------------------------------------------------------------------------------- /include/CMouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/CMouse.h -------------------------------------------------------------------------------- /include/CObjeto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/CObjeto.h -------------------------------------------------------------------------------- /include/COffscreenRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/COffscreenRenderer.h -------------------------------------------------------------------------------- /include/CParticula.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/CParticula.h -------------------------------------------------------------------------------- /include/CPilhaCoordenada.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/CPilhaCoordenada.h -------------------------------------------------------------------------------- /include/CPoolNumeros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/CPoolNumeros.h -------------------------------------------------------------------------------- /include/CTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/CTimer.h -------------------------------------------------------------------------------- /include/Codigos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/Codigos.h -------------------------------------------------------------------------------- /include/PIG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/PIG.h -------------------------------------------------------------------------------- /include/PIG_Desenhos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/PIG_Desenhos.h -------------------------------------------------------------------------------- /include/PIG_Extras.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/PIG_Extras.c -------------------------------------------------------------------------------- /include/PIG_Fontes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/PIG_Fontes.h -------------------------------------------------------------------------------- /include/PIG_Jogo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/PIG_Jogo.h -------------------------------------------------------------------------------- /include/PIG_Sprites.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/PIG_Sprites.h -------------------------------------------------------------------------------- /include/PIG_Timers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/PIG_Timers.h -------------------------------------------------------------------------------- /include/SDL/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL.h -------------------------------------------------------------------------------- /include/SDL/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_assert.h -------------------------------------------------------------------------------- /include/SDL/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_atomic.h -------------------------------------------------------------------------------- /include/SDL/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_audio.h -------------------------------------------------------------------------------- /include/SDL/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_bits.h -------------------------------------------------------------------------------- /include/SDL/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_blendmode.h -------------------------------------------------------------------------------- /include/SDL/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_clipboard.h -------------------------------------------------------------------------------- /include/SDL/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_config.h -------------------------------------------------------------------------------- /include/SDL/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_cpuinfo.h -------------------------------------------------------------------------------- /include/SDL/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_endian.h -------------------------------------------------------------------------------- /include/SDL/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_error.h -------------------------------------------------------------------------------- /include/SDL/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_events.h -------------------------------------------------------------------------------- /include/SDL/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_gamecontroller.h -------------------------------------------------------------------------------- /include/SDL/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_gesture.h -------------------------------------------------------------------------------- /include/SDL/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_haptic.h -------------------------------------------------------------------------------- /include/SDL/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_hints.h -------------------------------------------------------------------------------- /include/SDL/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_joystick.h -------------------------------------------------------------------------------- /include/SDL/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_keyboard.h -------------------------------------------------------------------------------- /include/SDL/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_keycode.h -------------------------------------------------------------------------------- /include/SDL/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_loadso.h -------------------------------------------------------------------------------- /include/SDL/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_log.h -------------------------------------------------------------------------------- /include/SDL/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_main.h -------------------------------------------------------------------------------- /include/SDL/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_messagebox.h -------------------------------------------------------------------------------- /include/SDL/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_mouse.h -------------------------------------------------------------------------------- /include/SDL/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_mutex.h -------------------------------------------------------------------------------- /include/SDL/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_name.h -------------------------------------------------------------------------------- /include/SDL/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_opengl.h -------------------------------------------------------------------------------- /include/SDL/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_opengles.h -------------------------------------------------------------------------------- /include/SDL/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_opengles2.h -------------------------------------------------------------------------------- /include/SDL/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_pixels.h -------------------------------------------------------------------------------- /include/SDL/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_platform.h -------------------------------------------------------------------------------- /include/SDL/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_power.h -------------------------------------------------------------------------------- /include/SDL/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_quit.h -------------------------------------------------------------------------------- /include/SDL/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_rect.h -------------------------------------------------------------------------------- /include/SDL/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_render.h -------------------------------------------------------------------------------- /include/SDL/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_revision.h -------------------------------------------------------------------------------- /include/SDL/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_rwops.h -------------------------------------------------------------------------------- /include/SDL/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_scancode.h -------------------------------------------------------------------------------- /include/SDL/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_shape.h -------------------------------------------------------------------------------- /include/SDL/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_stdinc.h -------------------------------------------------------------------------------- /include/SDL/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_surface.h -------------------------------------------------------------------------------- /include/SDL/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_system.h -------------------------------------------------------------------------------- /include/SDL/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_syswm.h -------------------------------------------------------------------------------- /include/SDL/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_test.h -------------------------------------------------------------------------------- /include/SDL/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_test_assert.h -------------------------------------------------------------------------------- /include/SDL/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_test_common.h -------------------------------------------------------------------------------- /include/SDL/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_test_compare.h -------------------------------------------------------------------------------- /include/SDL/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_test_crc32.h -------------------------------------------------------------------------------- /include/SDL/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_test_font.h -------------------------------------------------------------------------------- /include/SDL/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /include/SDL/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_test_harness.h -------------------------------------------------------------------------------- /include/SDL/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_test_images.h -------------------------------------------------------------------------------- /include/SDL/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_test_log.h -------------------------------------------------------------------------------- /include/SDL/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_test_md5.h -------------------------------------------------------------------------------- /include/SDL/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_test_random.h -------------------------------------------------------------------------------- /include/SDL/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_thread.h -------------------------------------------------------------------------------- /include/SDL/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_timer.h -------------------------------------------------------------------------------- /include/SDL/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_touch.h -------------------------------------------------------------------------------- /include/SDL/SDL_ttf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_ttf.h -------------------------------------------------------------------------------- /include/SDL/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_types.h -------------------------------------------------------------------------------- /include/SDL/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_version.h -------------------------------------------------------------------------------- /include/SDL/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/SDL_video.h -------------------------------------------------------------------------------- /include/SDL/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/begin_code.h -------------------------------------------------------------------------------- /include/SDL/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL/close_code.h -------------------------------------------------------------------------------- /include/SDL_Pack.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /include/SDL_image/IMG.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL_image/IMG.c -------------------------------------------------------------------------------- /include/SDL_image/IMG_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL_image/IMG_bmp.c -------------------------------------------------------------------------------- /include/SDL_image/IMG_gif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL_image/IMG_gif.c -------------------------------------------------------------------------------- /include/SDL_image/IMG_jpg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL_image/IMG_jpg.c -------------------------------------------------------------------------------- /include/SDL_image/IMG_lbm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL_image/IMG_lbm.c -------------------------------------------------------------------------------- /include/SDL_image/IMG_pcx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL_image/IMG_pcx.c -------------------------------------------------------------------------------- /include/SDL_image/IMG_png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL_image/IMG_png.c -------------------------------------------------------------------------------- /include/SDL_image/IMG_pnm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL_image/IMG_pnm.c -------------------------------------------------------------------------------- /include/SDL_image/IMG_tga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL_image/IMG_tga.c -------------------------------------------------------------------------------- /include/SDL_image/IMG_tif.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL_image/IMG_tif.c -------------------------------------------------------------------------------- /include/SDL_image/IMG_webp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL_image/IMG_webp.c -------------------------------------------------------------------------------- /include/SDL_image/IMG_xcf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL_image/IMG_xcf.c -------------------------------------------------------------------------------- /include/SDL_image/IMG_xpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL_image/IMG_xpm.c -------------------------------------------------------------------------------- /include/SDL_image/IMG_xv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL_image/IMG_xv.c -------------------------------------------------------------------------------- /include/SDL_image/IMG_xxx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL_image/IMG_xxx.c -------------------------------------------------------------------------------- /include/SDL_image/SDL_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL_image/SDL_image.h -------------------------------------------------------------------------------- /include/SDL_image/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL_image/miniz.h -------------------------------------------------------------------------------- /include/SDL_image/showimage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/SDL_image/showimage.c -------------------------------------------------------------------------------- /include/Teclas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/Teclas.h -------------------------------------------------------------------------------- /include/Tipos_PIG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/include/Tipos_PIG.h -------------------------------------------------------------------------------- /lib/libSDL2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/lib/libSDL2.a -------------------------------------------------------------------------------- /lib/libSDL2.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/lib/libSDL2.dll.a -------------------------------------------------------------------------------- /lib/libSDL2.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/lib/libSDL2.la -------------------------------------------------------------------------------- /lib/libSDL2_image.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/lib/libSDL2_image.a -------------------------------------------------------------------------------- /lib/libSDL2_image.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/lib/libSDL2_image.dll.a -------------------------------------------------------------------------------- /lib/libSDL2_image.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/lib/libSDL2_image.la -------------------------------------------------------------------------------- /lib/libSDL2_test.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/lib/libSDL2_test.a -------------------------------------------------------------------------------- /lib/libSDL2_ttf.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/lib/libSDL2_ttf.a -------------------------------------------------------------------------------- /lib/libSDL2_ttf.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/lib/libSDL2_ttf.dll.a -------------------------------------------------------------------------------- /lib/libSDL2_ttf.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/lib/libSDL2_ttf.la -------------------------------------------------------------------------------- /lib/libSDL2main.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/lib/libSDL2main.a -------------------------------------------------------------------------------- /src/Projeto.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/src/Projeto.cbp -------------------------------------------------------------------------------- /src/Projeto.cscope_file_list: -------------------------------------------------------------------------------- 1 | "C:\Users\Victor\Desktop\TCC\Dinossauro\src\main.cpp" 2 | -------------------------------------------------------------------------------- /src/Projeto.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/src/Projeto.depend -------------------------------------------------------------------------------- /src/Projeto.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/src/Projeto.layout -------------------------------------------------------------------------------- /src/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/src/SDL2.dll -------------------------------------------------------------------------------- /src/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/src/SDL2_image.dll -------------------------------------------------------------------------------- /src/SDL2_ttf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/src/SDL2_ttf.dll -------------------------------------------------------------------------------- /src/imagens/ceu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/src/imagens/ceu.png -------------------------------------------------------------------------------- /src/imagens/esfera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/src/imagens/esfera.png -------------------------------------------------------------------------------- /src/imagens/luz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/src/imagens/luz.png -------------------------------------------------------------------------------- /src/libfreetype-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/src/libfreetype-6.dll -------------------------------------------------------------------------------- /src/libgsl.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/src/libgsl.dll -------------------------------------------------------------------------------- /src/libgslcblas.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/src/libgslcblas.dll -------------------------------------------------------------------------------- /src/libjpeg-9.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/src/libjpeg-9.dll -------------------------------------------------------------------------------- /src/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/src/libpng16-16.dll -------------------------------------------------------------------------------- /src/libtiff-5.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/src/libtiff-5.dll -------------------------------------------------------------------------------- /src/libwebp-4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/src/libwebp-4.dll -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/src/main.o -------------------------------------------------------------------------------- /src/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JVictorDias/PIG/HEAD/src/zlib1.dll --------------------------------------------------------------------------------