diff --git a/README b/README index 8bbb587..5643c3e 100644 --- a/README +++ b/README @@ -21,7 +21,6 @@ The wrapper will include bindings for the following libraries: - SDL2 - SDL2_image - SDL2_mixer -- SDL2_net - SDL2_ttf Note that SDL2# will not provide every single SDL2 function. This is due to diff --git a/SDL2#.csproj b/SDL2#.csproj index 9b9a467..ce11098 100644 --- a/SDL2#.csproj +++ b/SDL2#.csproj @@ -37,7 +37,6 @@ - diff --git a/SDL2#.dll.config b/SDL2#.dll.config index 8ba724a..6dfa40d 100644 --- a/SDL2#.dll.config +++ b/SDL2#.dll.config @@ -12,10 +12,6 @@ - - - - diff --git a/src/SDL2_net.cs b/src/SDL2_net.cs deleted file mode 100644 index eb8f926..0000000 --- a/src/SDL2_net.cs +++ /dev/null @@ -1,47 +0,0 @@ -#region License -/* SDL2# - C# Wrapper for SDL2 - * - * Copyright (c) 2013 Ethan Lee. - * - * This software is provided 'as-is', without any express or implied warranty. - * In no event will the authors be held liable for any damages arising from - * the use of this software. - * - * Permission is granted to anyone to use this software for any purpose, - * including commercial applications, and to alter it and redistribute it - * freely, subject to the following restrictions: - * - * 1. The origin of this software must not be misrepresented; you must not - * claim that you wrote the original software. If you use this software in a - * product, an acknowledgment in the product documentation would be - * appreciated but is not required. - * - * 2. Altered source versions must be plainly marked as such, and must not be - * misrepresented as being the original software. - * - * 3. This notice may not be removed or altered from any source distribution. - * - * Ethan "flibitijibibo" Lee - * - */ -#endregion - -#region Using Statements -using System; -using System.Runtime.InteropServices; -#endregion - -namespace SDL2 -{ - public static class SDL2_net - { - #region SDL2# Variables - - /* Used by DllImport to load the native library. */ - private const string nativeLibName = "SDL2_net.dll"; - - #endregion - - // TODO: SDL2_net API - } -} \ No newline at end of file