├── .github └── FUNDING.yml ├── .gitignore ├── .gitlab-ci.yml ├── LICENSE ├── Makefile ├── README ├── SDL2-CS.Core.csproj ├── SDL2-CS.csproj ├── SDL2-CS.sln ├── app.config ├── gitlab-ci ├── SDL2-CS.nuspec ├── build-net461.sh ├── build-netcore.sh ├── deploy.sh └── package.sh └── src ├── SDL2.cs ├── SDL2_gfx.cs ├── SDL2_image.cs ├── SDL2_mixer.cs └── SDL2_ttf.cs /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [flibitijibibo] 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibitijibibo/SDL2-CS/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibitijibibo/SDL2-CS/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibitijibibo/SDL2-CS/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibitijibibo/SDL2-CS/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibitijibibo/SDL2-CS/HEAD/README -------------------------------------------------------------------------------- /SDL2-CS.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibitijibibo/SDL2-CS/HEAD/SDL2-CS.Core.csproj -------------------------------------------------------------------------------- /SDL2-CS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibitijibibo/SDL2-CS/HEAD/SDL2-CS.csproj -------------------------------------------------------------------------------- /SDL2-CS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibitijibibo/SDL2-CS/HEAD/SDL2-CS.sln -------------------------------------------------------------------------------- /app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibitijibibo/SDL2-CS/HEAD/app.config -------------------------------------------------------------------------------- /gitlab-ci/SDL2-CS.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibitijibibo/SDL2-CS/HEAD/gitlab-ci/SDL2-CS.nuspec -------------------------------------------------------------------------------- /gitlab-ci/build-net461.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | msbuild /p:Configuration=Release SDL2-CS.csproj 4 | -------------------------------------------------------------------------------- /gitlab-ci/build-netcore.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | dotnet build -c Release SDL2-CS.Core.csproj 4 | -------------------------------------------------------------------------------- /gitlab-ci/deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibitijibibo/SDL2-CS/HEAD/gitlab-ci/deploy.sh -------------------------------------------------------------------------------- /gitlab-ci/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibitijibibo/SDL2-CS/HEAD/gitlab-ci/package.sh -------------------------------------------------------------------------------- /src/SDL2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibitijibibo/SDL2-CS/HEAD/src/SDL2.cs -------------------------------------------------------------------------------- /src/SDL2_gfx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibitijibibo/SDL2-CS/HEAD/src/SDL2_gfx.cs -------------------------------------------------------------------------------- /src/SDL2_image.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibitijibibo/SDL2-CS/HEAD/src/SDL2_image.cs -------------------------------------------------------------------------------- /src/SDL2_mixer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibitijibibo/SDL2-CS/HEAD/src/SDL2_mixer.cs -------------------------------------------------------------------------------- /src/SDL2_ttf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flibitijibibo/SDL2-CS/HEAD/src/SDL2_ttf.cs --------------------------------------------------------------------------------