From 97b982d3f51b3d6a310bb7a8bf650c9e3a8ec2a7 Mon Sep 17 00:00:00 2001 From: Ethan Lee Date: Wed, 3 Apr 2013 20:09:40 -0400 Subject: [PATCH] Remove the SDL2_rtf stuff. Not even sure that is a supported extension anymore. --- README | 1 - SDL2#.csproj | 3 +-- SDL2#.dll.config | 6 +----- src/SDL2_rtf.cs | 47 ----------------------------------------------- 4 files changed, 2 insertions(+), 55 deletions(-) delete mode 100644 src/SDL2_rtf.cs diff --git a/README b/README index bdabdd8..488c7a7 100644 --- a/README +++ b/README @@ -20,7 +20,6 @@ The wrapper will include bindings for the following libraries: - SDL2_image - SDL2_mixer - SDL2_net -- SDL2_rtf - SDL2_ttf Roadmap diff --git a/SDL2#.csproj b/SDL2#.csproj index 664a337..5e757e9 100644 --- a/SDL2#.csproj +++ b/SDL2#.csproj @@ -36,7 +36,6 @@ - @@ -56,4 +55,4 @@ - \ No newline at end of file + diff --git a/SDL2#.dll.config b/SDL2#.dll.config index d90394d..8ba724a 100644 --- a/SDL2#.dll.config +++ b/SDL2#.dll.config @@ -16,11 +16,7 @@ - - - - - \ No newline at end of file + diff --git a/src/SDL2_rtf.cs b/src/SDL2_rtf.cs deleted file mode 100644 index c6ad16e..0000000 --- a/src/SDL2_rtf.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_rtf - { - #region SDL2# Variables - - /* Used by DllImport to load the native library. */ - internal const String nativeLibName = "SDL2_rtf.dll"; - - #endregion - - // TODO: SDL2_rtf API - } -} \ No newline at end of file