diff --git a/src/GamePlatform.cs b/src/GamePlatform.cs index 6b5eed0..95989e1 100644 --- a/src/GamePlatform.cs +++ b/src/GamePlatform.cs @@ -114,8 +114,6 @@ namespace Microsoft.Xna.Framework public abstract void SetPresentationInterval(PresentInterval interval); - public abstract bool HasTouch(); - public abstract void TextureDataFromStream( Stream stream, out int width, diff --git a/src/SDL2/SDL2_GamePlatform.cs b/src/SDL2/SDL2_GamePlatform.cs index bd45fb5..90f897f 100644 --- a/src/SDL2/SDL2_GamePlatform.cs +++ b/src/SDL2/SDL2_GamePlatform.cs @@ -461,11 +461,6 @@ namespace Microsoft.Xna.Framework } } - public override bool HasTouch() - { - return SDL.SDL_GetNumTouchDevices() > 0; - } - public override void TextureDataFromStream( Stream stream, out int width,