Details | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 1452 | chris | 1 | #region --- License --- |
| 2 | /* Copyright (c) 2006, 2007 Stefanos Apostolopoulos |
||
| 3 | * See license.txt for license info |
||
| 4 | */ |
||
| 5 | #endregion |
||
| 6 | |||
| 7 | using System; |
||
| 8 | using System.Collections.Generic; |
||
| 9 | using System.Text; |
||
| 10 | |||
| 11 | namespace OpenTK.Input |
||
| 12 | { |
||
| 13 | /// <summary> |
||
| 14 | /// Defines the interface for MouseDevice drivers. |
||
| 15 | /// </summary> |
||
| 16 | public interface IMouseDriver |
||
| 17 | { |
||
| 18 | /// <summary> |
||
| 19 | /// Gets the list of available MouseDevices. |
||
| 20 | /// </summary> |
||
| 21 | IList<MouseDevice> Mouse { get; } |
||
| 22 | } |
||
| 23 | } |