2007-08-10 11:27:13 +02:00
|
|
|
|
#region --- License ---
|
|
|
|
|
/* Copyright (c) 2006, 2007 Stefanos Apostolopoulos
|
|
|
|
|
* See license.txt for license info
|
|
|
|
|
*/
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
using System;
|
2007-08-05 01:39:56 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace OpenTK.Input
|
|
|
|
|
{
|
|
|
|
|
public interface IMouseDriver
|
|
|
|
|
{
|
2007-09-21 22:34:07 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the list of available mouse devices.
|
|
|
|
|
/// </summary>
|
2007-09-26 13:51:49 +02:00
|
|
|
|
IList<MouseDevice> Mouse { get; }
|
2007-08-05 01:39:56 +02:00
|
|
|
|
}
|
|
|
|
|
}
|