├── .clang-format ├── .gitignore ├── .gitmodules ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── bin └── object_files_go_here ├── cart.p8 ├── export_audio.txt ├── extended_api.md ├── makefile ├── src ├── config.h ├── crypt.cpp ├── crypt.h ├── firmware.lua ├── hal_audio.cpp ├── hal_audio.h ├── hal_core.cpp ├── hal_core.h ├── hal_fs.cpp ├── hal_fs.h ├── hal_palette.cpp ├── hal_palette.h ├── log.cpp ├── log.h ├── main.cpp ├── pico_audio.cpp ├── pico_audio.h ├── pico_cart.cpp ├── pico_cart.h ├── pico_core.cpp ├── pico_core.h ├── pico_data.cpp ├── pico_data.h ├── pico_gfx.cpp ├── pico_gfx.h ├── pico_memory.cpp ├── pico_memory.h ├── pico_script.cpp ├── pico_script.h ├── utils.cpp └── utils.h ├── switch_dev.sh ├── switch_rel.sh ├── tests ├── apitest1.p8 ├── btntest.p8 ├── coroutine.p8 ├── exfont.p8 ├── expal.p8 ├── font.p8 ├── fstest.p8 ├── geomtest.p8 ├── mousetest.p8 ├── oldfont.p8 ├── paltest.p8 ├── sfxmusictest.p8 ├── sfxtest.p8 ├── sfxtest0.wav ├── soundlooptest.p8 ├── sspr.p8 ├── stattest.p8 ├── time.p8 ├── touchtest.p8 └── zoomtest.p8 └── win-tac08 ├── Resource.h ├── libsdl ├── BUGS.txt ├── COPYING.txt ├── README-SDL.txt ├── README.txt ├── WhatsNew.txt ├── docs │ ├── README-android.md │ ├── README-cmake.md │ ├── README-directfb.md │ ├── README-dynapi.md │ ├── README-emscripten.md │ ├── README-gesture.md │ ├── README-hg.md │ ├── README-ios.md │ ├── README-linux.md │ ├── README-macosx.md │ ├── README-nacl.md │ ├── README-pandora.md │ ├── README-platforms.md │ ├── README-porting.md │ ├── README-psp.md │ ├── README-raspberrypi.md │ ├── README-touch.md │ ├── README-wince.md │ ├── README-windows.md │ ├── README-winrt.md │ ├── README.md │ └── doxyfile ├── include │ └── SDL2 │ │ ├── SDL.h │ │ ├── SDL_assert.h │ │ ├── SDL_atomic.h │ │ ├── SDL_audio.h │ │ ├── SDL_bits.h │ │ ├── SDL_blendmode.h │ │ ├── SDL_clipboard.h │ │ ├── SDL_config.h │ │ ├── SDL_config.h.cmake │ │ ├── SDL_config.h.in │ │ ├── SDL_config_android.h │ │ ├── SDL_config_iphoneos.h │ │ ├── SDL_config_macosx.h │ │ ├── SDL_config_macosx.h.orig │ │ ├── SDL_config_minimal.h │ │ ├── SDL_config_pandora.h │ │ ├── SDL_config_psp.h │ │ ├── SDL_config_windows.h │ │ ├── SDL_config_winrt.h │ │ ├── SDL_config_wiz.h │ │ ├── SDL_copying.h │ │ ├── SDL_cpuinfo.h │ │ ├── SDL_egl.h │ │ ├── SDL_endian.h │ │ ├── SDL_error.h │ │ ├── SDL_events.h │ │ ├── SDL_filesystem.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_opengl_glext.h │ │ ├── SDL_opengles.h │ │ ├── SDL_opengles2.h │ │ ├── SDL_opengles2_gl2.h │ │ ├── SDL_opengles2_gl2ext.h │ │ ├── SDL_opengles2_gl2platform.h │ │ ├── SDL_opengles2_khrplatform.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_sensor.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_memory.h │ │ ├── SDL_test_random.h │ │ ├── SDL_thread.h │ │ ├── SDL_timer.h │ │ ├── SDL_touch.h │ │ ├── SDL_types.h │ │ ├── SDL_version.h │ │ ├── SDL_video.h │ │ ├── SDL_vulkan.h │ │ ├── begin_code.h │ │ └── close_code.h └── lib │ ├── x64 │ ├── SDL2.dll │ ├── SDL2.lib │ ├── SDL2main.lib │ └── SDL2test.lib │ └── x86 │ ├── SDL2.dll │ ├── SDL2.lib │ ├── SDL2main.lib │ └── SDL2test.lib ├── small.ico ├── stdafx.h ├── targetver.h ├── win-tac08.h ├── win-tac08.ico ├── win-tac08.rc ├── win-tac08.sln ├── win-tac08.vcxproj └── win-tac08.vcxproj.filters /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/.gitmodules -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/README.md -------------------------------------------------------------------------------- /bin/object_files_go_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cart.p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/cart.p8 -------------------------------------------------------------------------------- /export_audio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/export_audio.txt -------------------------------------------------------------------------------- /extended_api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/extended_api.md -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/makefile -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/src/config.h -------------------------------------------------------------------------------- /src/crypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/src/crypt.cpp -------------------------------------------------------------------------------- /src/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/src/crypt.h -------------------------------------------------------------------------------- /src/firmware.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/src/firmware.lua -------------------------------------------------------------------------------- /src/hal_audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/src/hal_audio.cpp -------------------------------------------------------------------------------- /src/hal_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/src/hal_audio.h -------------------------------------------------------------------------------- /src/hal_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/src/hal_core.cpp -------------------------------------------------------------------------------- /src/hal_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/src/hal_core.h -------------------------------------------------------------------------------- /src/hal_fs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/src/hal_fs.cpp -------------------------------------------------------------------------------- /src/hal_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/src/hal_fs.h -------------------------------------------------------------------------------- /src/hal_palette.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/src/hal_palette.cpp -------------------------------------------------------------------------------- /src/hal_palette.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/src/hal_palette.h -------------------------------------------------------------------------------- /src/log.cpp: -------------------------------------------------------------------------------- 1 | #include "log.h" 2 | 3 | Logger logr; 4 | -------------------------------------------------------------------------------- /src/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/src/log.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/pico_audio.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/src/pico_audio.cpp -------------------------------------------------------------------------------- /src/pico_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/src/pico_audio.h -------------------------------------------------------------------------------- /src/pico_cart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/src/pico_cart.cpp -------------------------------------------------------------------------------- /src/pico_cart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/src/pico_cart.h -------------------------------------------------------------------------------- /src/pico_core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/src/pico_core.cpp -------------------------------------------------------------------------------- /src/pico_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/src/pico_core.h -------------------------------------------------------------------------------- /src/pico_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/src/pico_data.cpp -------------------------------------------------------------------------------- /src/pico_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/src/pico_data.h -------------------------------------------------------------------------------- /src/pico_gfx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/src/pico_gfx.cpp -------------------------------------------------------------------------------- /src/pico_gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/src/pico_gfx.h -------------------------------------------------------------------------------- /src/pico_memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/src/pico_memory.cpp -------------------------------------------------------------------------------- /src/pico_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/src/pico_memory.h -------------------------------------------------------------------------------- /src/pico_script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/src/pico_script.cpp -------------------------------------------------------------------------------- /src/pico_script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/src/pico_script.h -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/src/utils.h -------------------------------------------------------------------------------- /switch_dev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/switch_dev.sh -------------------------------------------------------------------------------- /switch_rel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/switch_rel.sh -------------------------------------------------------------------------------- /tests/apitest1.p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/tests/apitest1.p8 -------------------------------------------------------------------------------- /tests/btntest.p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/tests/btntest.p8 -------------------------------------------------------------------------------- /tests/coroutine.p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/tests/coroutine.p8 -------------------------------------------------------------------------------- /tests/exfont.p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/tests/exfont.p8 -------------------------------------------------------------------------------- /tests/expal.p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/tests/expal.p8 -------------------------------------------------------------------------------- /tests/font.p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/tests/font.p8 -------------------------------------------------------------------------------- /tests/fstest.p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/tests/fstest.p8 -------------------------------------------------------------------------------- /tests/geomtest.p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/tests/geomtest.p8 -------------------------------------------------------------------------------- /tests/mousetest.p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/tests/mousetest.p8 -------------------------------------------------------------------------------- /tests/oldfont.p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/tests/oldfont.p8 -------------------------------------------------------------------------------- /tests/paltest.p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/tests/paltest.p8 -------------------------------------------------------------------------------- /tests/sfxmusictest.p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/tests/sfxmusictest.p8 -------------------------------------------------------------------------------- /tests/sfxtest.p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/tests/sfxtest.p8 -------------------------------------------------------------------------------- /tests/sfxtest0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/tests/sfxtest0.wav -------------------------------------------------------------------------------- /tests/soundlooptest.p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/tests/soundlooptest.p8 -------------------------------------------------------------------------------- /tests/sspr.p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/tests/sspr.p8 -------------------------------------------------------------------------------- /tests/stattest.p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/tests/stattest.p8 -------------------------------------------------------------------------------- /tests/time.p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/tests/time.p8 -------------------------------------------------------------------------------- /tests/touchtest.p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/tests/touchtest.p8 -------------------------------------------------------------------------------- /tests/zoomtest.p8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/tests/zoomtest.p8 -------------------------------------------------------------------------------- /win-tac08/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/Resource.h -------------------------------------------------------------------------------- /win-tac08/libsdl/BUGS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/BUGS.txt -------------------------------------------------------------------------------- /win-tac08/libsdl/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/COPYING.txt -------------------------------------------------------------------------------- /win-tac08/libsdl/README-SDL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/README-SDL.txt -------------------------------------------------------------------------------- /win-tac08/libsdl/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/README.txt -------------------------------------------------------------------------------- /win-tac08/libsdl/WhatsNew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/WhatsNew.txt -------------------------------------------------------------------------------- /win-tac08/libsdl/docs/README-android.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/docs/README-android.md -------------------------------------------------------------------------------- /win-tac08/libsdl/docs/README-cmake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/docs/README-cmake.md -------------------------------------------------------------------------------- /win-tac08/libsdl/docs/README-directfb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/docs/README-directfb.md -------------------------------------------------------------------------------- /win-tac08/libsdl/docs/README-dynapi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/docs/README-dynapi.md -------------------------------------------------------------------------------- /win-tac08/libsdl/docs/README-emscripten.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/docs/README-emscripten.md -------------------------------------------------------------------------------- /win-tac08/libsdl/docs/README-gesture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/docs/README-gesture.md -------------------------------------------------------------------------------- /win-tac08/libsdl/docs/README-hg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/docs/README-hg.md -------------------------------------------------------------------------------- /win-tac08/libsdl/docs/README-ios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/docs/README-ios.md -------------------------------------------------------------------------------- /win-tac08/libsdl/docs/README-linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/docs/README-linux.md -------------------------------------------------------------------------------- /win-tac08/libsdl/docs/README-macosx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/docs/README-macosx.md -------------------------------------------------------------------------------- /win-tac08/libsdl/docs/README-nacl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/docs/README-nacl.md -------------------------------------------------------------------------------- /win-tac08/libsdl/docs/README-pandora.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/docs/README-pandora.md -------------------------------------------------------------------------------- /win-tac08/libsdl/docs/README-platforms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/docs/README-platforms.md -------------------------------------------------------------------------------- /win-tac08/libsdl/docs/README-porting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/docs/README-porting.md -------------------------------------------------------------------------------- /win-tac08/libsdl/docs/README-psp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/docs/README-psp.md -------------------------------------------------------------------------------- /win-tac08/libsdl/docs/README-raspberrypi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/docs/README-raspberrypi.md -------------------------------------------------------------------------------- /win-tac08/libsdl/docs/README-touch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/docs/README-touch.md -------------------------------------------------------------------------------- /win-tac08/libsdl/docs/README-wince.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/docs/README-wince.md -------------------------------------------------------------------------------- /win-tac08/libsdl/docs/README-windows.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/docs/README-windows.md -------------------------------------------------------------------------------- /win-tac08/libsdl/docs/README-winrt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/docs/README-winrt.md -------------------------------------------------------------------------------- /win-tac08/libsdl/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/docs/README.md -------------------------------------------------------------------------------- /win-tac08/libsdl/docs/doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/docs/doxyfile -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_assert.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_atomic.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_audio.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_bits.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_blendmode.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_clipboard.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_config.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_config.h.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_config.h.cmake -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_config.h.in -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_config_android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_config_android.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_config_iphoneos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_config_iphoneos.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_config_macosx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_config_macosx.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_config_macosx.h.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_config_macosx.h.orig -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_config_minimal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_config_minimal.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_config_pandora.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_config_pandora.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_config_psp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_config_psp.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_config_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_config_windows.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_config_winrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_config_winrt.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_config_wiz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_config_wiz.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_copying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_copying.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_cpuinfo.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_egl.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_endian.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_error.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_events.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_filesystem.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_gamecontroller.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_gesture.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_haptic.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_hints.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_joystick.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_keyboard.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_keycode.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_loadso.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_log.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_main.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_messagebox.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_mouse.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_mutex.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_name.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_opengl.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_opengl_glext.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_opengles.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_opengles2.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_pixels.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_platform.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_power.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_quit.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_rect.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_render.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_revision.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_rwops.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_scancode.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_sensor.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_shape.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_stdinc.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_surface.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_system.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_syswm.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_test.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_test_assert.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_test_common.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_test_compare.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_test_crc32.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_test_font.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_test_harness.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_test_images.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_test_log.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_test_md5.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_test_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_test_memory.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_test_random.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_thread.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_timer.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_touch.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_types.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_version.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_video.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/SDL_vulkan.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/begin_code.h -------------------------------------------------------------------------------- /win-tac08/libsdl/include/SDL2/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/include/SDL2/close_code.h -------------------------------------------------------------------------------- /win-tac08/libsdl/lib/x64/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/lib/x64/SDL2.dll -------------------------------------------------------------------------------- /win-tac08/libsdl/lib/x64/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/lib/x64/SDL2.lib -------------------------------------------------------------------------------- /win-tac08/libsdl/lib/x64/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/lib/x64/SDL2main.lib -------------------------------------------------------------------------------- /win-tac08/libsdl/lib/x64/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/lib/x64/SDL2test.lib -------------------------------------------------------------------------------- /win-tac08/libsdl/lib/x86/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/lib/x86/SDL2.dll -------------------------------------------------------------------------------- /win-tac08/libsdl/lib/x86/SDL2.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/lib/x86/SDL2.lib -------------------------------------------------------------------------------- /win-tac08/libsdl/lib/x86/SDL2main.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/lib/x86/SDL2main.lib -------------------------------------------------------------------------------- /win-tac08/libsdl/lib/x86/SDL2test.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/libsdl/lib/x86/SDL2test.lib -------------------------------------------------------------------------------- /win-tac08/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/small.ico -------------------------------------------------------------------------------- /win-tac08/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/stdafx.h -------------------------------------------------------------------------------- /win-tac08/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/targetver.h -------------------------------------------------------------------------------- /win-tac08/win-tac08.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /win-tac08/win-tac08.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/win-tac08.ico -------------------------------------------------------------------------------- /win-tac08/win-tac08.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/win-tac08.rc -------------------------------------------------------------------------------- /win-tac08/win-tac08.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/win-tac08.sln -------------------------------------------------------------------------------- /win-tac08/win-tac08.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/win-tac08.vcxproj -------------------------------------------------------------------------------- /win-tac08/win-tac08.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcafed00d/tac08/HEAD/win-tac08/win-tac08.vcxproj.filters --------------------------------------------------------------------------------