Removed SDL2_net. Just use Lidgren.Network instead.

This commit is contained in:
Ethan Lee 2013-04-07 23:13:39 -04:00
parent 5c91529e4f
commit 29d299fa41
4 changed files with 0 additions and 53 deletions

1
README
View file

@ -21,7 +21,6 @@ The wrapper will include bindings for the following libraries:
- SDL2 - SDL2
- SDL2_image - SDL2_image
- SDL2_mixer - SDL2_mixer
- SDL2_net
- SDL2_ttf - SDL2_ttf
Note that SDL2# will not provide every single SDL2 function. This is due to Note that SDL2# will not provide every single SDL2 function. This is due to

View file

@ -37,7 +37,6 @@
<Compile Include="src\SDL2.cs" /> <Compile Include="src\SDL2.cs" />
<Compile Include="src\SDL2_image.cs" /> <Compile Include="src\SDL2_image.cs" />
<Compile Include="src\SDL2_mixer.cs" /> <Compile Include="src\SDL2_mixer.cs" />
<Compile Include="src\SDL2_net.cs" />
<Compile Include="src\SDL2_ttf.cs" /> <Compile Include="src\SDL2_ttf.cs" />
</ItemGroup> </ItemGroup>
<ItemGroup> <ItemGroup>

View file

@ -12,10 +12,6 @@
<dllmap dll="SDL2_mixer.dll" os="osx" target="libSDL2_mixer-2.0.0.dylib"/> <dllmap dll="SDL2_mixer.dll" os="osx" target="libSDL2_mixer-2.0.0.dylib"/>
<dllmap dll="SDL2_mixer.dll" os="linux" target="libSDL2_mixer-2.0.so.0"/> <dllmap dll="SDL2_mixer.dll" os="linux" target="libSDL2_mixer-2.0.so.0"/>
<dllmap dll="SDL2_net.dll" os="windows" target="SDL2_net.dll"/>
<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_ttf.dll" os="windows" target="SDL2_ttf.dll"/> <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="osx" target="libSDL2_ttf-2.0.0.dylib"/>
<dllmap dll="SDL2_ttf.dll" os="linux" target="libSDL2_ttf-2.0.so.0"/> <dllmap dll="SDL2_ttf.dll" os="linux" target="libSDL2_ttf-2.0.so.0"/>

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_net
{
#region SDL2# Variables
/* Used by DllImport to load the native library. */
private const string nativeLibName = "SDL2_net.dll";
#endregion
// TODO: SDL2_net API
}
}