├── 10 ├── 10.csproj ├── App.config ├── LTexture.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── SDL2_image.dll ├── Sdl │ ├── SDL2.cs │ └── SDL2_image.cs ├── background.png ├── foo.png ├── libpng16-16.dll └── zlib1.dll ├── 11 ├── 11.csproj ├── App.config ├── LTexture.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── SDL2_image.dll ├── Sdl │ ├── SDL2.cs │ └── SDL2_image.cs ├── dots.png ├── libpng16-16.dll └── zlib1.dll ├── 12 ├── 12.csproj ├── App.config ├── LTexture.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── SDL2_image.dll ├── Sdl │ ├── SDL2.cs │ └── SDL2_image.cs ├── colors.png ├── libpng16-16.dll └── zlib1.dll ├── 13 ├── 13.csproj ├── App.config ├── LTexture.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── SDL2_image.dll ├── Sdl │ ├── SDL2.cs │ └── SDL2_image.cs ├── fadein.png ├── fadeout.png ├── libpng16-16.dll └── zlib1.dll ├── 14 ├── 14.csproj ├── App.config ├── LTexture.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── SDL2_image.dll ├── Sdl │ ├── SDL2.cs │ └── SDL2_image.cs ├── foo.png ├── libpng16-16.dll └── zlib1.dll ├── 15 ├── 15.csproj ├── App.config ├── LTexture.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── SDL2_image.dll ├── Sdl │ ├── SDL2.cs │ └── SDL2_image.cs ├── arrow.png ├── libpng16-16.dll └── zlib1.dll ├── 16 ├── 16.csproj ├── App.config ├── LTexture.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── SDL2_image.dll ├── SDL2_ttf.dll ├── Sdl │ ├── SDL2.cs │ ├── SDL2_image.cs │ └── SDL2_ttf.cs ├── lazy.ttf ├── libfreetype-6.dll ├── libpng16-16.dll └── zlib1.dll ├── 17 ├── 17.csproj ├── App.config ├── LButton.cs ├── LTexture.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── SDL2_image.dll ├── Sdl │ ├── SDL2.cs │ └── SDL2_image.cs ├── button.png ├── libpng16-16.dll └── zlib1.dll ├── 18 ├── 18.csproj ├── App.config ├── LTexture.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── SDL2_image.dll ├── Sdl │ ├── SDL2.cs │ └── SDL2_image.cs ├── down.png ├── left.png ├── libpng16-16.dll ├── press.png ├── right.png ├── up.png └── zlib1.dll ├── 19 ├── 19.csproj ├── App.config ├── LTexture.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── SDL2_image.dll ├── Sdl │ ├── SDL2.cs │ └── SDL2_image.cs ├── arrow.png ├── libpng16-16.dll └── zlib1.dll ├── 20 ├── 20.csproj ├── App.config ├── LTexture.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── SDL2_image.dll ├── Sdl │ ├── SDL2.cs │ └── SDL2_image.cs ├── libpng16-16.dll ├── splash.png └── zlib1.dll ├── 21 ├── 21.csproj ├── App.config ├── LTexture.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── SDL2_image.dll ├── SDL2_mixer.dll ├── Sdl │ ├── SDL2.cs │ ├── SDL2_image.cs │ └── SDL2_mixer.cs ├── beat.wav ├── high.wav ├── libpng16-16.dll ├── low.wav ├── medium.wav ├── prompt.png ├── scratch.wav └── zlib1.dll ├── 22 ├── 22.csproj ├── App.config ├── LTexture.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── SDL2_image.dll ├── SDL2_ttf.dll ├── Sdl │ ├── SDL2.cs │ ├── SDL2_image.cs │ └── SDL2_ttf.cs ├── lazy.ttf ├── libfreetype-6.dll ├── libpng16-16.dll └── zlib1.dll ├── 23 ├── 23.csproj ├── App.config ├── LTexture.cs ├── LTimer.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── SDL2_image.dll ├── SDL2_ttf.dll ├── Sdl │ ├── SDL2.cs │ ├── SDL2_image.cs │ └── SDL2_ttf.cs ├── lazy.ttf ├── libfreetype-6.dll ├── libpng16-16.dll └── zlib1.dll ├── 24 ├── 24.csproj ├── App.config ├── LTexture.cs ├── LTimer.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── SDL2_image.dll ├── SDL2_ttf.dll ├── Sdl │ ├── SDL2.cs │ ├── SDL2_image.cs │ └── SDL2_ttf.cs ├── lazy.ttf ├── libfreetype-6.dll ├── libpng16-16.dll └── zlib1.dll ├── 25 ├── 25.csproj ├── App.config ├── LTexture.cs ├── LTimer.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── SDL2_image.dll ├── SDL2_ttf.dll ├── Sdl │ ├── SDL2.cs │ ├── SDL2_image.cs │ └── SDL2_ttf.cs ├── lazy.ttf ├── libfreetype-6.dll ├── libpng16-16.dll └── zlib1.dll ├── 26 ├── 26.csproj ├── App.config ├── Dot.cs ├── LTexture.cs ├── LTimer.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── SDL2_image.dll ├── Sdl │ ├── SDL2.cs │ ├── SDL2_image.cs │ └── SDL2_mixer.cs ├── dot.bmp ├── libpng16-16.dll └── zlib1.dll ├── 27 ├── 27.csproj ├── App.config ├── Dot.cs ├── LTexture.cs ├── LTimer.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── SDL2_image.dll ├── Sdl │ ├── SDL2.cs │ ├── SDL2_image.cs │ └── SDL2_mixer.cs ├── dot.bmp ├── libpng16-16.dll └── zlib1.dll ├── 28 ├── 28.csproj ├── App.config ├── Dot.cs ├── LTexture.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── SDL2_image.dll ├── Sdl │ ├── SDL2.cs │ ├── SDL2_image.cs │ └── SDL2_mixer.cs ├── dot.bmp ├── libpng16-16.dll └── zlib1.dll ├── 29 ├── 29.csproj ├── App.config ├── Dot.cs ├── LTexture.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── SDL2_image.dll ├── Sdl │ ├── SDL2.cs │ ├── SDL2_image.cs │ └── SDL2_mixer.cs ├── dot.bmp ├── libpng16-16.dll └── zlib1.dll ├── 30 ├── 30.csproj ├── App.config ├── Dot.cs ├── LTexture.cs ├── LTimer.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── SDL2_image.dll ├── Sdl │ ├── SDL2.cs │ ├── SDL2_image.cs │ └── SDL2_mixer.cs ├── bg.png ├── dot.bmp ├── libpng16-16.dll └── zlib1.dll ├── 31 ├── 31.csproj ├── App.config ├── Dot.cs ├── LTexture.cs ├── LTimer.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── SDL2_image.dll ├── Sdl │ ├── SDL2.cs │ └── SDL2_image.cs ├── bg.png ├── dot.bmp ├── libpng16-16.dll └── zlib1.dll ├── 32 ├── 32.csproj ├── App.config ├── LTexture.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── SDL2_image.dll ├── SDL2_ttf.dll ├── Sdl │ ├── SDL2.cs │ ├── SDL2_image.cs │ └── SDL2_ttf.cs ├── lazy.ttf ├── libfreetype-6.dll ├── libpng16-16.dll └── zlib1.dll ├── 33 ├── 33.csproj ├── App.config ├── LTexture.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── SDL2_image.dll ├── SDL2_ttf.dll ├── Sdl │ ├── SDL2.cs │ ├── SDL2_image.cs │ └── SDL2_ttf.cs ├── lazy.ttf ├── libfreetype-6.dll ├── libpng16-16.dll └── zlib1.dll ├── 35 ├── 35.csproj ├── App.config ├── LTexture.cs ├── LWindow.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── SDL2_image.dll ├── Sdl │ ├── SDL2.cs │ └── SDL2_image.cs ├── libpng16-16.dll ├── window.png └── zlib1.dll ├── 36 ├── 36.csproj ├── App.config ├── LWindow.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll └── Sdl │ └── SDL2.cs ├── .gitignore ├── 01 ├── 01.csproj ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll └── Sdl │ └── SDL2.cs ├── 02 ├── 02.csproj ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── Sdl │ └── SDL2.cs └── hello_world.bmp ├── 03 ├── 03.csproj ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── Sdl │ └── SDL2.cs └── x.bmp ├── 04 ├── 04.csproj ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── Sdl │ └── SDL2.cs ├── down.bmp ├── left.bmp ├── press.bmp ├── right.bmp └── up.bmp ├── 05 ├── 05.csproj ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── Sdl │ └── SDL2.cs └── stretch.bmp ├── 06 ├── 06.csproj ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── SDL2_image.dll ├── Sdl │ ├── SDL2.cs │ └── SDL2_image.cs ├── libpng16-16.dll ├── loaded.png └── zlib1.dll ├── 07 ├── 07.csproj ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── SDL2_image.dll ├── Sdl │ ├── SDL2.cs │ └── SDL2_image.cs ├── libpng16-16.dll ├── texture.png └── zlib1.dll ├── 08 ├── 08.csproj ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── SDL2_image.dll └── Sdl │ ├── SDL2.cs │ └── SDL2_image.cs ├── 09 ├── 09.csproj ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── SDL2.dll ├── SDL2_image.dll ├── Sdl │ ├── SDL2.cs │ └── SDL2_image.cs ├── libpng16-16.dll ├── viewport.png └── zlib1.dll ├── README.md └── SdlTutorials.sln /.gitignore: -------------------------------------------------------------------------------- 1 | .vs 2 | /SdlTutorials.VC.db 3 | bin 4 | obj 5 | -------------------------------------------------------------------------------- /01/01.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/01/01.csproj -------------------------------------------------------------------------------- /01/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/01/App.config -------------------------------------------------------------------------------- /01/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/01/Program.cs -------------------------------------------------------------------------------- /01/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/01/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /01/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/01/SDL2.dll -------------------------------------------------------------------------------- /01/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/01/Sdl/SDL2.cs -------------------------------------------------------------------------------- /02/02.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/02/02.csproj -------------------------------------------------------------------------------- /02/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/02/App.config -------------------------------------------------------------------------------- /02/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/02/Program.cs -------------------------------------------------------------------------------- /02/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/02/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /02/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/02/SDL2.dll -------------------------------------------------------------------------------- /02/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/02/Sdl/SDL2.cs -------------------------------------------------------------------------------- /02/hello_world.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/02/hello_world.bmp -------------------------------------------------------------------------------- /03/03.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/03/03.csproj -------------------------------------------------------------------------------- /03/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/03/App.config -------------------------------------------------------------------------------- /03/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/03/Program.cs -------------------------------------------------------------------------------- /03/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/03/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /03/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/03/SDL2.dll -------------------------------------------------------------------------------- /03/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/03/Sdl/SDL2.cs -------------------------------------------------------------------------------- /03/x.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/03/x.bmp -------------------------------------------------------------------------------- /04/04.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/04/04.csproj -------------------------------------------------------------------------------- /04/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/04/App.config -------------------------------------------------------------------------------- /04/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/04/Program.cs -------------------------------------------------------------------------------- /04/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/04/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /04/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/04/SDL2.dll -------------------------------------------------------------------------------- /04/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/04/Sdl/SDL2.cs -------------------------------------------------------------------------------- /04/down.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/04/down.bmp -------------------------------------------------------------------------------- /04/left.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/04/left.bmp -------------------------------------------------------------------------------- /04/press.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/04/press.bmp -------------------------------------------------------------------------------- /04/right.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/04/right.bmp -------------------------------------------------------------------------------- /04/up.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/04/up.bmp -------------------------------------------------------------------------------- /05/05.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/05/05.csproj -------------------------------------------------------------------------------- /05/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/05/App.config -------------------------------------------------------------------------------- /05/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/05/Program.cs -------------------------------------------------------------------------------- /05/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/05/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /05/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/05/SDL2.dll -------------------------------------------------------------------------------- /05/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/05/Sdl/SDL2.cs -------------------------------------------------------------------------------- /05/stretch.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/05/stretch.bmp -------------------------------------------------------------------------------- /06/06.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/06/06.csproj -------------------------------------------------------------------------------- /06/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/06/App.config -------------------------------------------------------------------------------- /06/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/06/Program.cs -------------------------------------------------------------------------------- /06/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/06/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /06/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/06/SDL2.dll -------------------------------------------------------------------------------- /06/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/06/SDL2_image.dll -------------------------------------------------------------------------------- /06/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/06/Sdl/SDL2.cs -------------------------------------------------------------------------------- /06/Sdl/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/06/Sdl/SDL2_image.cs -------------------------------------------------------------------------------- /06/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/06/libpng16-16.dll -------------------------------------------------------------------------------- /06/loaded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/06/loaded.png -------------------------------------------------------------------------------- /06/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/06/zlib1.dll -------------------------------------------------------------------------------- /07/07.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/07/07.csproj -------------------------------------------------------------------------------- /07/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/07/App.config -------------------------------------------------------------------------------- /07/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/07/Program.cs -------------------------------------------------------------------------------- /07/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/07/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /07/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/07/SDL2.dll -------------------------------------------------------------------------------- /07/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/07/SDL2_image.dll -------------------------------------------------------------------------------- /07/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/07/Sdl/SDL2.cs -------------------------------------------------------------------------------- /07/Sdl/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/07/Sdl/SDL2_image.cs -------------------------------------------------------------------------------- /07/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/07/libpng16-16.dll -------------------------------------------------------------------------------- /07/texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/07/texture.png -------------------------------------------------------------------------------- /07/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/07/zlib1.dll -------------------------------------------------------------------------------- /08/08.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/08/08.csproj -------------------------------------------------------------------------------- /08/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/08/App.config -------------------------------------------------------------------------------- /08/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/08/Program.cs -------------------------------------------------------------------------------- /08/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/08/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /08/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/08/SDL2.dll -------------------------------------------------------------------------------- /08/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/08/SDL2_image.dll -------------------------------------------------------------------------------- /08/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/08/Sdl/SDL2.cs -------------------------------------------------------------------------------- /08/Sdl/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/08/Sdl/SDL2_image.cs -------------------------------------------------------------------------------- /09/09.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/09/09.csproj -------------------------------------------------------------------------------- /09/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/09/App.config -------------------------------------------------------------------------------- /09/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/09/Program.cs -------------------------------------------------------------------------------- /09/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/09/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /09/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/09/SDL2.dll -------------------------------------------------------------------------------- /09/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/09/SDL2_image.dll -------------------------------------------------------------------------------- /09/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/09/Sdl/SDL2.cs -------------------------------------------------------------------------------- /09/Sdl/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/09/Sdl/SDL2_image.cs -------------------------------------------------------------------------------- /09/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/09/libpng16-16.dll -------------------------------------------------------------------------------- /09/viewport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/09/viewport.png -------------------------------------------------------------------------------- /09/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/09/zlib1.dll -------------------------------------------------------------------------------- /10/10.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/10/10.csproj -------------------------------------------------------------------------------- /10/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/10/App.config -------------------------------------------------------------------------------- /10/LTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/10/LTexture.cs -------------------------------------------------------------------------------- /10/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/10/Program.cs -------------------------------------------------------------------------------- /10/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/10/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /10/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/10/SDL2.dll -------------------------------------------------------------------------------- /10/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/10/SDL2_image.dll -------------------------------------------------------------------------------- /10/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/10/Sdl/SDL2.cs -------------------------------------------------------------------------------- /10/Sdl/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/10/Sdl/SDL2_image.cs -------------------------------------------------------------------------------- /10/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/10/background.png -------------------------------------------------------------------------------- /10/foo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/10/foo.png -------------------------------------------------------------------------------- /10/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/10/libpng16-16.dll -------------------------------------------------------------------------------- /10/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/10/zlib1.dll -------------------------------------------------------------------------------- /11/11.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/11/11.csproj -------------------------------------------------------------------------------- /11/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/11/App.config -------------------------------------------------------------------------------- /11/LTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/11/LTexture.cs -------------------------------------------------------------------------------- /11/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/11/Program.cs -------------------------------------------------------------------------------- /11/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/11/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /11/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/11/SDL2.dll -------------------------------------------------------------------------------- /11/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/11/SDL2_image.dll -------------------------------------------------------------------------------- /11/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/11/Sdl/SDL2.cs -------------------------------------------------------------------------------- /11/Sdl/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/11/Sdl/SDL2_image.cs -------------------------------------------------------------------------------- /11/dots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/11/dots.png -------------------------------------------------------------------------------- /11/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/11/libpng16-16.dll -------------------------------------------------------------------------------- /11/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/11/zlib1.dll -------------------------------------------------------------------------------- /12/12.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/12/12.csproj -------------------------------------------------------------------------------- /12/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/12/App.config -------------------------------------------------------------------------------- /12/LTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/12/LTexture.cs -------------------------------------------------------------------------------- /12/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/12/Program.cs -------------------------------------------------------------------------------- /12/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/12/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /12/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/12/SDL2.dll -------------------------------------------------------------------------------- /12/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/12/SDL2_image.dll -------------------------------------------------------------------------------- /12/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/12/Sdl/SDL2.cs -------------------------------------------------------------------------------- /12/Sdl/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/12/Sdl/SDL2_image.cs -------------------------------------------------------------------------------- /12/colors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/12/colors.png -------------------------------------------------------------------------------- /12/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/12/libpng16-16.dll -------------------------------------------------------------------------------- /12/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/12/zlib1.dll -------------------------------------------------------------------------------- /13/13.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/13/13.csproj -------------------------------------------------------------------------------- /13/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/13/App.config -------------------------------------------------------------------------------- /13/LTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/13/LTexture.cs -------------------------------------------------------------------------------- /13/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/13/Program.cs -------------------------------------------------------------------------------- /13/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/13/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /13/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/13/SDL2.dll -------------------------------------------------------------------------------- /13/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/13/SDL2_image.dll -------------------------------------------------------------------------------- /13/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/13/Sdl/SDL2.cs -------------------------------------------------------------------------------- /13/Sdl/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/13/Sdl/SDL2_image.cs -------------------------------------------------------------------------------- /13/fadein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/13/fadein.png -------------------------------------------------------------------------------- /13/fadeout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/13/fadeout.png -------------------------------------------------------------------------------- /13/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/13/libpng16-16.dll -------------------------------------------------------------------------------- /13/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/13/zlib1.dll -------------------------------------------------------------------------------- /14/14.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/14/14.csproj -------------------------------------------------------------------------------- /14/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/14/App.config -------------------------------------------------------------------------------- /14/LTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/14/LTexture.cs -------------------------------------------------------------------------------- /14/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/14/Program.cs -------------------------------------------------------------------------------- /14/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/14/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /14/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/14/SDL2.dll -------------------------------------------------------------------------------- /14/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/14/SDL2_image.dll -------------------------------------------------------------------------------- /14/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/14/Sdl/SDL2.cs -------------------------------------------------------------------------------- /14/Sdl/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/14/Sdl/SDL2_image.cs -------------------------------------------------------------------------------- /14/foo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/14/foo.png -------------------------------------------------------------------------------- /14/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/14/libpng16-16.dll -------------------------------------------------------------------------------- /14/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/14/zlib1.dll -------------------------------------------------------------------------------- /15/15.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/15/15.csproj -------------------------------------------------------------------------------- /15/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/15/App.config -------------------------------------------------------------------------------- /15/LTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/15/LTexture.cs -------------------------------------------------------------------------------- /15/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/15/Program.cs -------------------------------------------------------------------------------- /15/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/15/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /15/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/15/SDL2.dll -------------------------------------------------------------------------------- /15/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/15/SDL2_image.dll -------------------------------------------------------------------------------- /15/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/15/Sdl/SDL2.cs -------------------------------------------------------------------------------- /15/Sdl/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/15/Sdl/SDL2_image.cs -------------------------------------------------------------------------------- /15/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/15/arrow.png -------------------------------------------------------------------------------- /15/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/15/libpng16-16.dll -------------------------------------------------------------------------------- /15/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/15/zlib1.dll -------------------------------------------------------------------------------- /16/16.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/16/16.csproj -------------------------------------------------------------------------------- /16/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/16/App.config -------------------------------------------------------------------------------- /16/LTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/16/LTexture.cs -------------------------------------------------------------------------------- /16/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/16/Program.cs -------------------------------------------------------------------------------- /16/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/16/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /16/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/16/SDL2.dll -------------------------------------------------------------------------------- /16/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/16/SDL2_image.dll -------------------------------------------------------------------------------- /16/SDL2_ttf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/16/SDL2_ttf.dll -------------------------------------------------------------------------------- /16/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/16/Sdl/SDL2.cs -------------------------------------------------------------------------------- /16/Sdl/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/16/Sdl/SDL2_image.cs -------------------------------------------------------------------------------- /16/Sdl/SDL2_ttf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/16/Sdl/SDL2_ttf.cs -------------------------------------------------------------------------------- /16/lazy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/16/lazy.ttf -------------------------------------------------------------------------------- /16/libfreetype-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/16/libfreetype-6.dll -------------------------------------------------------------------------------- /16/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/16/libpng16-16.dll -------------------------------------------------------------------------------- /16/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/16/zlib1.dll -------------------------------------------------------------------------------- /17/17.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/17/17.csproj -------------------------------------------------------------------------------- /17/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/17/App.config -------------------------------------------------------------------------------- /17/LButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/17/LButton.cs -------------------------------------------------------------------------------- /17/LTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/17/LTexture.cs -------------------------------------------------------------------------------- /17/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/17/Program.cs -------------------------------------------------------------------------------- /17/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/17/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /17/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/17/SDL2.dll -------------------------------------------------------------------------------- /17/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/17/SDL2_image.dll -------------------------------------------------------------------------------- /17/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/17/Sdl/SDL2.cs -------------------------------------------------------------------------------- /17/Sdl/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/17/Sdl/SDL2_image.cs -------------------------------------------------------------------------------- /17/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/17/button.png -------------------------------------------------------------------------------- /17/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/17/libpng16-16.dll -------------------------------------------------------------------------------- /17/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/17/zlib1.dll -------------------------------------------------------------------------------- /18/18.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/18/18.csproj -------------------------------------------------------------------------------- /18/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/18/App.config -------------------------------------------------------------------------------- /18/LTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/18/LTexture.cs -------------------------------------------------------------------------------- /18/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/18/Program.cs -------------------------------------------------------------------------------- /18/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/18/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /18/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/18/SDL2.dll -------------------------------------------------------------------------------- /18/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/18/SDL2_image.dll -------------------------------------------------------------------------------- /18/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/18/Sdl/SDL2.cs -------------------------------------------------------------------------------- /18/Sdl/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/18/Sdl/SDL2_image.cs -------------------------------------------------------------------------------- /18/down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/18/down.png -------------------------------------------------------------------------------- /18/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/18/left.png -------------------------------------------------------------------------------- /18/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/18/libpng16-16.dll -------------------------------------------------------------------------------- /18/press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/18/press.png -------------------------------------------------------------------------------- /18/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/18/right.png -------------------------------------------------------------------------------- /18/up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/18/up.png -------------------------------------------------------------------------------- /18/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/18/zlib1.dll -------------------------------------------------------------------------------- /19/19.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/19/19.csproj -------------------------------------------------------------------------------- /19/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/19/App.config -------------------------------------------------------------------------------- /19/LTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/19/LTexture.cs -------------------------------------------------------------------------------- /19/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/19/Program.cs -------------------------------------------------------------------------------- /19/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/19/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /19/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/19/SDL2.dll -------------------------------------------------------------------------------- /19/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/19/SDL2_image.dll -------------------------------------------------------------------------------- /19/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/19/Sdl/SDL2.cs -------------------------------------------------------------------------------- /19/Sdl/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/19/Sdl/SDL2_image.cs -------------------------------------------------------------------------------- /19/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/19/arrow.png -------------------------------------------------------------------------------- /19/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/19/libpng16-16.dll -------------------------------------------------------------------------------- /19/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/19/zlib1.dll -------------------------------------------------------------------------------- /20/20.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/20/20.csproj -------------------------------------------------------------------------------- /20/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/20/App.config -------------------------------------------------------------------------------- /20/LTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/20/LTexture.cs -------------------------------------------------------------------------------- /20/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/20/Program.cs -------------------------------------------------------------------------------- /20/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/20/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /20/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/20/SDL2.dll -------------------------------------------------------------------------------- /20/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/20/SDL2_image.dll -------------------------------------------------------------------------------- /20/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/20/Sdl/SDL2.cs -------------------------------------------------------------------------------- /20/Sdl/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/20/Sdl/SDL2_image.cs -------------------------------------------------------------------------------- /20/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/20/libpng16-16.dll -------------------------------------------------------------------------------- /20/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/20/splash.png -------------------------------------------------------------------------------- /20/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/20/zlib1.dll -------------------------------------------------------------------------------- /21/21.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/21/21.csproj -------------------------------------------------------------------------------- /21/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/21/App.config -------------------------------------------------------------------------------- /21/LTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/21/LTexture.cs -------------------------------------------------------------------------------- /21/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/21/Program.cs -------------------------------------------------------------------------------- /21/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/21/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /21/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/21/SDL2.dll -------------------------------------------------------------------------------- /21/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/21/SDL2_image.dll -------------------------------------------------------------------------------- /21/SDL2_mixer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/21/SDL2_mixer.dll -------------------------------------------------------------------------------- /21/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/21/Sdl/SDL2.cs -------------------------------------------------------------------------------- /21/Sdl/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/21/Sdl/SDL2_image.cs -------------------------------------------------------------------------------- /21/Sdl/SDL2_mixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/21/Sdl/SDL2_mixer.cs -------------------------------------------------------------------------------- /21/beat.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/21/beat.wav -------------------------------------------------------------------------------- /21/high.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/21/high.wav -------------------------------------------------------------------------------- /21/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/21/libpng16-16.dll -------------------------------------------------------------------------------- /21/low.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/21/low.wav -------------------------------------------------------------------------------- /21/medium.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/21/medium.wav -------------------------------------------------------------------------------- /21/prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/21/prompt.png -------------------------------------------------------------------------------- /21/scratch.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/21/scratch.wav -------------------------------------------------------------------------------- /21/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/21/zlib1.dll -------------------------------------------------------------------------------- /22/22.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/22/22.csproj -------------------------------------------------------------------------------- /22/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/22/App.config -------------------------------------------------------------------------------- /22/LTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/22/LTexture.cs -------------------------------------------------------------------------------- /22/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/22/Program.cs -------------------------------------------------------------------------------- /22/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/22/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /22/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/22/SDL2.dll -------------------------------------------------------------------------------- /22/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/22/SDL2_image.dll -------------------------------------------------------------------------------- /22/SDL2_ttf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/22/SDL2_ttf.dll -------------------------------------------------------------------------------- /22/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/22/Sdl/SDL2.cs -------------------------------------------------------------------------------- /22/Sdl/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/22/Sdl/SDL2_image.cs -------------------------------------------------------------------------------- /22/Sdl/SDL2_ttf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/22/Sdl/SDL2_ttf.cs -------------------------------------------------------------------------------- /22/lazy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/22/lazy.ttf -------------------------------------------------------------------------------- /22/libfreetype-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/22/libfreetype-6.dll -------------------------------------------------------------------------------- /22/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/22/libpng16-16.dll -------------------------------------------------------------------------------- /22/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/22/zlib1.dll -------------------------------------------------------------------------------- /23/23.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/23/23.csproj -------------------------------------------------------------------------------- /23/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/23/App.config -------------------------------------------------------------------------------- /23/LTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/23/LTexture.cs -------------------------------------------------------------------------------- /23/LTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/23/LTimer.cs -------------------------------------------------------------------------------- /23/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/23/Program.cs -------------------------------------------------------------------------------- /23/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/23/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /23/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/23/SDL2.dll -------------------------------------------------------------------------------- /23/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/23/SDL2_image.dll -------------------------------------------------------------------------------- /23/SDL2_ttf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/23/SDL2_ttf.dll -------------------------------------------------------------------------------- /23/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/23/Sdl/SDL2.cs -------------------------------------------------------------------------------- /23/Sdl/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/23/Sdl/SDL2_image.cs -------------------------------------------------------------------------------- /23/Sdl/SDL2_ttf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/23/Sdl/SDL2_ttf.cs -------------------------------------------------------------------------------- /23/lazy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/23/lazy.ttf -------------------------------------------------------------------------------- /23/libfreetype-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/23/libfreetype-6.dll -------------------------------------------------------------------------------- /23/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/23/libpng16-16.dll -------------------------------------------------------------------------------- /23/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/23/zlib1.dll -------------------------------------------------------------------------------- /24/24.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/24/24.csproj -------------------------------------------------------------------------------- /24/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/24/App.config -------------------------------------------------------------------------------- /24/LTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/24/LTexture.cs -------------------------------------------------------------------------------- /24/LTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/24/LTimer.cs -------------------------------------------------------------------------------- /24/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/24/Program.cs -------------------------------------------------------------------------------- /24/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/24/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /24/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/24/SDL2.dll -------------------------------------------------------------------------------- /24/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/24/SDL2_image.dll -------------------------------------------------------------------------------- /24/SDL2_ttf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/24/SDL2_ttf.dll -------------------------------------------------------------------------------- /24/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/24/Sdl/SDL2.cs -------------------------------------------------------------------------------- /24/Sdl/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/24/Sdl/SDL2_image.cs -------------------------------------------------------------------------------- /24/Sdl/SDL2_ttf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/24/Sdl/SDL2_ttf.cs -------------------------------------------------------------------------------- /24/lazy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/24/lazy.ttf -------------------------------------------------------------------------------- /24/libfreetype-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/24/libfreetype-6.dll -------------------------------------------------------------------------------- /24/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/24/libpng16-16.dll -------------------------------------------------------------------------------- /24/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/24/zlib1.dll -------------------------------------------------------------------------------- /25/25.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/25/25.csproj -------------------------------------------------------------------------------- /25/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/25/App.config -------------------------------------------------------------------------------- /25/LTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/25/LTexture.cs -------------------------------------------------------------------------------- /25/LTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/25/LTimer.cs -------------------------------------------------------------------------------- /25/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/25/Program.cs -------------------------------------------------------------------------------- /25/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/25/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /25/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/25/SDL2.dll -------------------------------------------------------------------------------- /25/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/25/SDL2_image.dll -------------------------------------------------------------------------------- /25/SDL2_ttf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/25/SDL2_ttf.dll -------------------------------------------------------------------------------- /25/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/25/Sdl/SDL2.cs -------------------------------------------------------------------------------- /25/Sdl/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/25/Sdl/SDL2_image.cs -------------------------------------------------------------------------------- /25/Sdl/SDL2_ttf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/25/Sdl/SDL2_ttf.cs -------------------------------------------------------------------------------- /25/lazy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/25/lazy.ttf -------------------------------------------------------------------------------- /25/libfreetype-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/25/libfreetype-6.dll -------------------------------------------------------------------------------- /25/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/25/libpng16-16.dll -------------------------------------------------------------------------------- /25/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/25/zlib1.dll -------------------------------------------------------------------------------- /26/26.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/26/26.csproj -------------------------------------------------------------------------------- /26/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/26/App.config -------------------------------------------------------------------------------- /26/Dot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/26/Dot.cs -------------------------------------------------------------------------------- /26/LTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/26/LTexture.cs -------------------------------------------------------------------------------- /26/LTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/26/LTimer.cs -------------------------------------------------------------------------------- /26/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/26/Program.cs -------------------------------------------------------------------------------- /26/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/26/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /26/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/26/SDL2.dll -------------------------------------------------------------------------------- /26/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/26/SDL2_image.dll -------------------------------------------------------------------------------- /26/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/26/Sdl/SDL2.cs -------------------------------------------------------------------------------- /26/Sdl/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/26/Sdl/SDL2_image.cs -------------------------------------------------------------------------------- /26/Sdl/SDL2_mixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/26/Sdl/SDL2_mixer.cs -------------------------------------------------------------------------------- /26/dot.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/26/dot.bmp -------------------------------------------------------------------------------- /26/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/26/libpng16-16.dll -------------------------------------------------------------------------------- /26/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/26/zlib1.dll -------------------------------------------------------------------------------- /27/27.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/27/27.csproj -------------------------------------------------------------------------------- /27/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/27/App.config -------------------------------------------------------------------------------- /27/Dot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/27/Dot.cs -------------------------------------------------------------------------------- /27/LTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/27/LTexture.cs -------------------------------------------------------------------------------- /27/LTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/27/LTimer.cs -------------------------------------------------------------------------------- /27/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/27/Program.cs -------------------------------------------------------------------------------- /27/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/27/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /27/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/27/SDL2.dll -------------------------------------------------------------------------------- /27/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/27/SDL2_image.dll -------------------------------------------------------------------------------- /27/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/27/Sdl/SDL2.cs -------------------------------------------------------------------------------- /27/Sdl/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/27/Sdl/SDL2_image.cs -------------------------------------------------------------------------------- /27/Sdl/SDL2_mixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/27/Sdl/SDL2_mixer.cs -------------------------------------------------------------------------------- /27/dot.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/27/dot.bmp -------------------------------------------------------------------------------- /27/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/27/libpng16-16.dll -------------------------------------------------------------------------------- /27/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/27/zlib1.dll -------------------------------------------------------------------------------- /28/28.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/28/28.csproj -------------------------------------------------------------------------------- /28/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/28/App.config -------------------------------------------------------------------------------- /28/Dot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/28/Dot.cs -------------------------------------------------------------------------------- /28/LTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/28/LTexture.cs -------------------------------------------------------------------------------- /28/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/28/Program.cs -------------------------------------------------------------------------------- /28/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/28/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /28/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/28/SDL2.dll -------------------------------------------------------------------------------- /28/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/28/SDL2_image.dll -------------------------------------------------------------------------------- /28/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/28/Sdl/SDL2.cs -------------------------------------------------------------------------------- /28/Sdl/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/28/Sdl/SDL2_image.cs -------------------------------------------------------------------------------- /28/Sdl/SDL2_mixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/28/Sdl/SDL2_mixer.cs -------------------------------------------------------------------------------- /28/dot.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/28/dot.bmp -------------------------------------------------------------------------------- /28/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/28/libpng16-16.dll -------------------------------------------------------------------------------- /28/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/28/zlib1.dll -------------------------------------------------------------------------------- /29/29.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/29/29.csproj -------------------------------------------------------------------------------- /29/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/29/App.config -------------------------------------------------------------------------------- /29/Dot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/29/Dot.cs -------------------------------------------------------------------------------- /29/LTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/29/LTexture.cs -------------------------------------------------------------------------------- /29/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/29/Program.cs -------------------------------------------------------------------------------- /29/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/29/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /29/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/29/SDL2.dll -------------------------------------------------------------------------------- /29/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/29/SDL2_image.dll -------------------------------------------------------------------------------- /29/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/29/Sdl/SDL2.cs -------------------------------------------------------------------------------- /29/Sdl/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/29/Sdl/SDL2_image.cs -------------------------------------------------------------------------------- /29/Sdl/SDL2_mixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/29/Sdl/SDL2_mixer.cs -------------------------------------------------------------------------------- /29/dot.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/29/dot.bmp -------------------------------------------------------------------------------- /29/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/29/libpng16-16.dll -------------------------------------------------------------------------------- /29/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/29/zlib1.dll -------------------------------------------------------------------------------- /30/30.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/30/30.csproj -------------------------------------------------------------------------------- /30/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/30/App.config -------------------------------------------------------------------------------- /30/Dot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/30/Dot.cs -------------------------------------------------------------------------------- /30/LTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/30/LTexture.cs -------------------------------------------------------------------------------- /30/LTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/30/LTimer.cs -------------------------------------------------------------------------------- /30/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/30/Program.cs -------------------------------------------------------------------------------- /30/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/30/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /30/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/30/SDL2.dll -------------------------------------------------------------------------------- /30/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/30/SDL2_image.dll -------------------------------------------------------------------------------- /30/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/30/Sdl/SDL2.cs -------------------------------------------------------------------------------- /30/Sdl/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/30/Sdl/SDL2_image.cs -------------------------------------------------------------------------------- /30/Sdl/SDL2_mixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/30/Sdl/SDL2_mixer.cs -------------------------------------------------------------------------------- /30/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/30/bg.png -------------------------------------------------------------------------------- /30/dot.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/30/dot.bmp -------------------------------------------------------------------------------- /30/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/30/libpng16-16.dll -------------------------------------------------------------------------------- /30/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/30/zlib1.dll -------------------------------------------------------------------------------- /31/31.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/31/31.csproj -------------------------------------------------------------------------------- /31/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/31/App.config -------------------------------------------------------------------------------- /31/Dot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/31/Dot.cs -------------------------------------------------------------------------------- /31/LTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/31/LTexture.cs -------------------------------------------------------------------------------- /31/LTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/31/LTimer.cs -------------------------------------------------------------------------------- /31/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/31/Program.cs -------------------------------------------------------------------------------- /31/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/31/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /31/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/31/SDL2.dll -------------------------------------------------------------------------------- /31/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/31/SDL2_image.dll -------------------------------------------------------------------------------- /31/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/31/Sdl/SDL2.cs -------------------------------------------------------------------------------- /31/Sdl/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/31/Sdl/SDL2_image.cs -------------------------------------------------------------------------------- /31/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/31/bg.png -------------------------------------------------------------------------------- /31/dot.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/31/dot.bmp -------------------------------------------------------------------------------- /31/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/31/libpng16-16.dll -------------------------------------------------------------------------------- /31/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/31/zlib1.dll -------------------------------------------------------------------------------- /32/32.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/32/32.csproj -------------------------------------------------------------------------------- /32/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/32/App.config -------------------------------------------------------------------------------- /32/LTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/32/LTexture.cs -------------------------------------------------------------------------------- /32/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/32/Program.cs -------------------------------------------------------------------------------- /32/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/32/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /32/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/32/SDL2.dll -------------------------------------------------------------------------------- /32/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/32/SDL2_image.dll -------------------------------------------------------------------------------- /32/SDL2_ttf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/32/SDL2_ttf.dll -------------------------------------------------------------------------------- /32/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/32/Sdl/SDL2.cs -------------------------------------------------------------------------------- /32/Sdl/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/32/Sdl/SDL2_image.cs -------------------------------------------------------------------------------- /32/Sdl/SDL2_ttf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/32/Sdl/SDL2_ttf.cs -------------------------------------------------------------------------------- /32/lazy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/32/lazy.ttf -------------------------------------------------------------------------------- /32/libfreetype-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/32/libfreetype-6.dll -------------------------------------------------------------------------------- /32/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/32/libpng16-16.dll -------------------------------------------------------------------------------- /32/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/32/zlib1.dll -------------------------------------------------------------------------------- /33/33.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/33/33.csproj -------------------------------------------------------------------------------- /33/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/33/App.config -------------------------------------------------------------------------------- /33/LTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/33/LTexture.cs -------------------------------------------------------------------------------- /33/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/33/Program.cs -------------------------------------------------------------------------------- /33/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/33/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /33/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/33/SDL2.dll -------------------------------------------------------------------------------- /33/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/33/SDL2_image.dll -------------------------------------------------------------------------------- /33/SDL2_ttf.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/33/SDL2_ttf.dll -------------------------------------------------------------------------------- /33/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/33/Sdl/SDL2.cs -------------------------------------------------------------------------------- /33/Sdl/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/33/Sdl/SDL2_image.cs -------------------------------------------------------------------------------- /33/Sdl/SDL2_ttf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/33/Sdl/SDL2_ttf.cs -------------------------------------------------------------------------------- /33/lazy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/33/lazy.ttf -------------------------------------------------------------------------------- /33/libfreetype-6.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/33/libfreetype-6.dll -------------------------------------------------------------------------------- /33/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/33/libpng16-16.dll -------------------------------------------------------------------------------- /33/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/33/zlib1.dll -------------------------------------------------------------------------------- /35/35.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/35/35.csproj -------------------------------------------------------------------------------- /35/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/35/App.config -------------------------------------------------------------------------------- /35/LTexture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/35/LTexture.cs -------------------------------------------------------------------------------- /35/LWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/35/LWindow.cs -------------------------------------------------------------------------------- /35/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/35/Program.cs -------------------------------------------------------------------------------- /35/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/35/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /35/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/35/SDL2.dll -------------------------------------------------------------------------------- /35/SDL2_image.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/35/SDL2_image.dll -------------------------------------------------------------------------------- /35/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/35/Sdl/SDL2.cs -------------------------------------------------------------------------------- /35/Sdl/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/35/Sdl/SDL2_image.cs -------------------------------------------------------------------------------- /35/libpng16-16.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/35/libpng16-16.dll -------------------------------------------------------------------------------- /35/window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/35/window.png -------------------------------------------------------------------------------- /35/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/35/zlib1.dll -------------------------------------------------------------------------------- /36/36.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/36/36.csproj -------------------------------------------------------------------------------- /36/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/36/App.config -------------------------------------------------------------------------------- /36/LWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/36/LWindow.cs -------------------------------------------------------------------------------- /36/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/36/Program.cs -------------------------------------------------------------------------------- /36/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/36/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /36/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/36/SDL2.dll -------------------------------------------------------------------------------- /36/Sdl/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/36/Sdl/SDL2.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/README.md -------------------------------------------------------------------------------- /SdlTutorials.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIRprise/SharpSdl2Examples/HEAD/SdlTutorials.sln --------------------------------------------------------------------------------