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-07-31 23:50:29 +02:00
|
|
|
|
bool this[Keys k] { get; }
|
2007-07-27 00:56:55 +02:00
|
|
|
|
}
|
2007-08-03 02:14:31 +02:00
|
|
|
|
}
|