Removed obsolete mouse driver.

This commit is contained in:
Jarl Gullberg 2017-06-20 15:54:57 +02:00
parent a5581d94af
commit d3e831038d
No known key found for this signature in database
GPG key ID: 750FF6F6BDA72D23
2 changed files with 1 additions and 25 deletions

View file

@ -14,7 +14,7 @@ namespace OpenTK.Input
/// Defines the interface for an input driver.
/// </summary>
[Obsolete("This interface has been replaced by OpenTK.Input.Keyboard, Mouse, Joystick and GamePad.")]
public interface IInputDriver : IKeyboardDriver, IMouseDriver, IJoystickDriver, IDisposable
public interface IInputDriver : IKeyboardDriver, IJoystickDriver, IDisposable
{
/// <summary>
/// Updates the state of the driver.

View file

@ -1,24 +0,0 @@
#region --- License ---
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
* See license.txt for license info
*/
#endregion
using System;
using System.Collections.Generic;
using System.Text;
namespace OpenTK.Input
{
/// <summary>
/// Defines the interface for MouseDevice drivers.
/// </summary>
[Obsolete]
public interface IMouseDriver
{
/// <summary>
/// Gets the list of available MouseDevices.
/// </summary>
IList<MouseDevice> Mouse { get; }
}
}