├── LICENSE ├── README.md ├── Tutorial 001_Setup ├── Mac │ ├── SDL Tutorial.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ └── sonarsystems.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── sonarsystems.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── SDL Tutorial.xcscheme │ │ │ └── xcschememanagement.plist │ └── SDL Tutorial │ │ └── main.cpp └── Windows │ ├── CodeBlocks │ ├── SDL2.dll │ ├── SDLTut.cbp │ ├── SDLTut.layout │ ├── bin │ │ └── Debug │ │ │ └── SDLTut.exe │ ├── main.cpp │ └── obj │ │ └── Debug │ │ └── main.o │ ├── MinGW │ ├── Makefile │ ├── SDLMain.exe │ └── main.cpp │ ├── Visual Studio Code │ └── SDLTemplate │ │ ├── .vscode │ │ └── c_cpp_properties.json │ │ ├── Makefile │ │ ├── SDL2.dll │ │ ├── main.cpp │ │ ├── main.exe │ │ └── src │ │ ├── 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_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_hidapi.h │ │ │ ├── SDL_hints.h │ │ │ ├── SDL_joystick.h │ │ │ ├── SDL_keyboard.h │ │ │ ├── SDL_keycode.h │ │ │ ├── SDL_loadso.h │ │ │ ├── SDL_locale.h │ │ │ ├── SDL_log.h │ │ │ ├── SDL_main.h │ │ │ ├── SDL_messagebox.h │ │ │ ├── SDL_metal.h │ │ │ ├── SDL_misc.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 │ │ ├── cmake │ │ └── SDL2 │ │ │ ├── sdl2-config-version.cmake │ │ │ └── sdl2-config.cmake │ │ ├── libSDL2.a │ │ ├── libSDL2.dll.a │ │ ├── libSDL2.la │ │ ├── libSDL2_test.a │ │ ├── libSDL2_test.la │ │ ├── libSDL2main.a │ │ ├── libSDL2main.la │ │ └── pkgconfig │ │ └── sdl2.pc │ └── Visual Studio │ ├── .vs │ └── SDLTutorial │ │ └── v14 │ │ └── .suo │ ├── Debug │ ├── SDLTutorial.exe │ ├── SDLTutorial.ilk │ └── SDLTutorial.pdb │ ├── SDLTutorial.VC.db │ ├── SDLTutorial.sln │ └── SDLTutorial │ ├── Debug │ ├── SDLTutorial.log │ ├── SDLTutorial.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SDLTutorial.lastbuildstate │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── main.obj │ ├── vc140.idb │ └── vc140.pdb │ ├── SDL2.dll │ ├── SDLTutorial.vcxproj │ ├── SDLTutorial.vcxproj.filters │ └── main.cpp ├── Tutorial 002_Hello World └── main.cpp ├── Tutorial 003_Drawing A BMP Image ├── hello_world.bmp └── main.cpp ├── Tutorial 004_Load Image Using SDL_image ├── logo.png └── main.cpp ├── Tutorial 005_Change Background Colour └── main.cpp ├── Tutorial 006_Keyboard Events └── main.cpp └── Tutorial 007_Mouse Events └── main.cpp /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/README.md -------------------------------------------------------------------------------- /Tutorial 001_Setup/Mac/SDL Tutorial.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Mac/SDL Tutorial.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Tutorial 001_Setup/Mac/SDL Tutorial.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Mac/SDL Tutorial.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Tutorial 001_Setup/Mac/SDL Tutorial.xcodeproj/project.xcworkspace/xcuserdata/sonarsystems.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Mac/SDL Tutorial.xcodeproj/project.xcworkspace/xcuserdata/sonarsystems.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Tutorial 001_Setup/Mac/SDL Tutorial.xcodeproj/xcuserdata/sonarsystems.xcuserdatad/xcschemes/SDL Tutorial.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Mac/SDL Tutorial.xcodeproj/xcuserdata/sonarsystems.xcuserdatad/xcschemes/SDL Tutorial.xcscheme -------------------------------------------------------------------------------- /Tutorial 001_Setup/Mac/SDL Tutorial.xcodeproj/xcuserdata/sonarsystems.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Mac/SDL Tutorial.xcodeproj/xcuserdata/sonarsystems.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Tutorial 001_Setup/Mac/SDL Tutorial/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Mac/SDL Tutorial/main.cpp -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/CodeBlocks/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/CodeBlocks/SDL2.dll -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/CodeBlocks/SDLTut.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/CodeBlocks/SDLTut.cbp -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/CodeBlocks/SDLTut.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/CodeBlocks/SDLTut.layout -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/CodeBlocks/bin/Debug/SDLTut.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/CodeBlocks/bin/Debug/SDLTut.exe -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/CodeBlocks/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/CodeBlocks/main.cpp -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/CodeBlocks/obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/CodeBlocks/obj/Debug/main.o -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/MinGW/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/MinGW/Makefile -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/MinGW/SDLMain.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/MinGW/SDLMain.exe -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/MinGW/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/MinGW/main.cpp -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/Makefile -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/SDL2.dll -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/main.cpp -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/main.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/main.exe -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_assert.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_atomic.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_audio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_audio.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_bits.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_blendmode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_blendmode.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_clipboard.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_config.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_cpuinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_cpuinfo.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_egl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_egl.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_endian.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_error.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_events.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_filesystem.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_gamecontroller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_gamecontroller.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_gesture.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_haptic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_haptic.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_hidapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_hidapi.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_hints.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_hints.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_joystick.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_keyboard.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_keycode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_keycode.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_loadso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_loadso.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_locale.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_locale.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_log.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_main.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_messagebox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_messagebox.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_metal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_metal.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_misc.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_mouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_mouse.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_mutex.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_name.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_opengl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_opengl.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_opengl_glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_opengl_glext.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_opengles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_opengles.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_opengles2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_opengles2.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_opengles2_gl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_opengles2_gl2.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_opengles2_gl2ext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_opengles2_gl2ext.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_opengles2_gl2platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_opengles2_gl2platform.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_opengles2_khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_opengles2_khrplatform.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_pixels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_pixels.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_platform.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_power.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_quit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_quit.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_rect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_rect.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_render.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_revision.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_rwops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_rwops.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_scancode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_scancode.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_sensor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_sensor.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_shape.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_shape.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_stdinc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_stdinc.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_surface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_surface.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_system.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_syswm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_syswm.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_test.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_test_assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_test_assert.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_test_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_test_common.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_test_compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_test_compare.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_test_crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_test_crc32.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_test_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_test_font.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_test_fuzzer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_test_fuzzer.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_test_harness.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_test_harness.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_test_images.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_test_images.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_test_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_test_log.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_test_md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_test_md5.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_test_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_test_memory.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_test_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_test_random.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_thread.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_timer.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_touch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_touch.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_types.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_version.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_video.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_vulkan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/SDL_vulkan.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/begin_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/begin_code.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/close_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/include/SDL2/close_code.h -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/lib/cmake/SDL2/sdl2-config-version.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/lib/cmake/SDL2/sdl2-config-version.cmake -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/lib/cmake/SDL2/sdl2-config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/lib/cmake/SDL2/sdl2-config.cmake -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/lib/libSDL2.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/lib/libSDL2.a -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/lib/libSDL2.dll.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/lib/libSDL2.dll.a -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/lib/libSDL2.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/lib/libSDL2.la -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/lib/libSDL2_test.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/lib/libSDL2_test.a -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/lib/libSDL2_test.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/lib/libSDL2_test.la -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/lib/libSDL2main.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/lib/libSDL2main.a -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/lib/libSDL2main.la: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/lib/libSDL2main.la -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/lib/pkgconfig/sdl2.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio Code/SDLTemplate/src/lib/pkgconfig/sdl2.pc -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio/.vs/SDLTutorial/v14/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio/.vs/SDLTutorial/v14/.suo -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio/Debug/SDLTutorial.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio/Debug/SDLTutorial.exe -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio/Debug/SDLTutorial.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio/Debug/SDLTutorial.ilk -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio/Debug/SDLTutorial.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio/Debug/SDLTutorial.pdb -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial.VC.db -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial.sln -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial/Debug/SDLTutorial.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial/Debug/SDLTutorial.log -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial/Debug/SDLTutorial.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial/Debug/SDLTutorial.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial/Debug/SDLTutorial.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial/Debug/SDLTutorial.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial/Debug/SDLTutorial.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial/Debug/SDLTutorial.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial/Debug/SDLTutorial.tlog/SDLTutorial.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial/Debug/SDLTutorial.tlog/SDLTutorial.lastbuildstate -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial/Debug/SDLTutorial.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial/Debug/SDLTutorial.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial/Debug/SDLTutorial.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial/Debug/SDLTutorial.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial/Debug/SDLTutorial.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial/Debug/SDLTutorial.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial/Debug/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial/Debug/main.obj -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial/Debug/vc140.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial/Debug/vc140.idb -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial/Debug/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial/Debug/vc140.pdb -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial/SDL2.dll -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial/SDLTutorial.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial/SDLTutorial.vcxproj -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial/SDLTutorial.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial/SDLTutorial.vcxproj.filters -------------------------------------------------------------------------------- /Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 001_Setup/Windows/Visual Studio/SDLTutorial/main.cpp -------------------------------------------------------------------------------- /Tutorial 002_Hello World/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 002_Hello World/main.cpp -------------------------------------------------------------------------------- /Tutorial 003_Drawing A BMP Image/hello_world.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 003_Drawing A BMP Image/hello_world.bmp -------------------------------------------------------------------------------- /Tutorial 003_Drawing A BMP Image/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 003_Drawing A BMP Image/main.cpp -------------------------------------------------------------------------------- /Tutorial 004_Load Image Using SDL_image/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 004_Load Image Using SDL_image/logo.png -------------------------------------------------------------------------------- /Tutorial 004_Load Image Using SDL_image/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 004_Load Image Using SDL_image/main.cpp -------------------------------------------------------------------------------- /Tutorial 005_Change Background Colour/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 005_Change Background Colour/main.cpp -------------------------------------------------------------------------------- /Tutorial 006_Keyboard Events/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 006_Keyboard Events/main.cpp -------------------------------------------------------------------------------- /Tutorial 007_Mouse Events/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SonarSystems/SDL-2-Tutorials/HEAD/Tutorial 007_Mouse Events/main.cpp --------------------------------------------------------------------------------