2007-07-27 03:37:12 +02:00
|
|
|
|
#region --- License ---
|
|
|
|
|
/* Copyright (c) 2007 Stefanos Apostolopoulos
|
|
|
|
|
* See license.txt for license info
|
|
|
|
|
*/
|
|
|
|
|
#endregion
|
2007-07-27 00:56:55 +02:00
|
|
|
|
|
|
|
|
|
namespace OpenTK.Input
|
|
|
|
|
{
|
2007-08-03 02:14:31 +02:00
|
|
|
|
public interface IKeyboard : IInputDevice
|
2007-07-27 00:56:55 +02:00
|
|
|
|
{
|
2007-08-05 18:04:39 +02:00
|
|
|
|
bool this[Key k] { get; }
|
2007-08-04 14:09:58 +02:00
|
|
|
|
int NumberOfKeys { get; }
|
|
|
|
|
int NumberOfFunctionKeys { get; }
|
|
|
|
|
int NumberOfLeds { get; }
|
|
|
|
|
long DeviceID { get; }
|
2007-07-27 00:56:55 +02:00
|
|
|
|
}
|
2007-08-03 02:14:31 +02:00
|
|
|
|
}
|