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 KeyboardDevice drivers.
|
|
|
|
|
/// </summary>
|
2009-02-22 11:43:35 +01:00
|
|
|
|
public interface IKeyboardDriver
|
|
|
|
|
{
|
2009-03-01 00:11:27 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the list of available KeyboardDevices.
|
|
|
|
|
/// </summary>
|
2009-02-22 11:43:35 +01:00
|
|
|
|
IList<KeyboardDevice> Keyboard { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|