2009-02-22 11:43:35 +01:00
|
|
|
|
#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
|
|
|
|
|
{
|
2009-03-01 00:11:27 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Defines the interface for MouseDevice drivers.
|
|
|
|
|
/// </summary>
|
2010-10-29 13:27:40 +02:00
|
|
|
|
[Obsolete]
|
2009-02-22 11:43:35 +01:00
|
|
|
|
public interface IMouseDriver
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
2009-03-01 00:11:27 +01:00
|
|
|
|
/// Gets the list of available MouseDevices.
|
2009-02-22 11:43:35 +01:00
|
|
|
|
/// </summary>
|
|
|
|
|
IList<MouseDevice> Mouse { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|