mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-09 10:35:41 +00:00
Removed obsolete mouse driver.
This commit is contained in:
parent
a5581d94af
commit
d3e831038d
|
@ -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.
|
||||
|
|
|
@ -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; }
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue