Remove the SDL2_rtf stuff. Not even sure that is a supported extension anymore.

This commit is contained in:
Ethan Lee 2013-04-03 20:09:40 -04:00
parent 020da070aa
commit 97b982d3f5
4 changed files with 2 additions and 55 deletions

1
README
View file

@ -20,7 +20,6 @@ The wrapper will include bindings for the following libraries:
- SDL2_image
- SDL2_mixer
- SDL2_net
- SDL2_rtf
- SDL2_ttf
Roadmap

View file

@ -36,7 +36,6 @@
<Compile Include="src\SDL2_image.cs" />
<Compile Include="src\SDL2_mixer.cs" />
<Compile Include="src\SDL2_net.cs" />
<Compile Include="src\SDL2_rtf.cs" />
<Compile Include="src\SDL2_ttf.cs" />
</ItemGroup>
<ItemGroup>
@ -56,4 +55,4 @@
</Properties>
</MonoDevelop>
</ProjectExtensions>
</Project>
</Project>

View file

@ -16,11 +16,7 @@
<dllmap dll="SDL2_net.dll" os="osx" target="libSDL2_net-2.0.0.dylib"/>
<dllmap dll="SDL2_net.dll" os="linux" target="libSDL2_net-2.0.so.0"/>
<dllmap dll="SDL2_rtf.dll" os="windows" target="SDL2_rtf.dll"/>
<dllmap dll="SDL2_rtf.dll" os="osx" target="libSDL2_rtf-2.0.0.dylib"/>
<dllmap dll="SDL2_rtf.dll" os="linux" target="libSDL2_rtf-2.0.so.0"/>
<dllmap dll="SDL2_ttf.dll" os="windows" target="SDL2_ttf.dll"/>
<dllmap dll="SDL2_ttf.dll" os="osx" target="libSDL2_ttf-2.0.0.dylib"/>
<dllmap dll="SDL2_ttf.dll" os="linux" target="libSDL2_ttf-2.0.so.0"/>
</configuration>
</configuration>

View file

@ -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 <flibitijibibo@flibitijibibo.com>
*
*/
#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
}
}