Opentk/Source/OpenTK/Input/IKeyboard.cs

13 lines
256 B
C#
Raw Normal View History

#region --- License ---
/* Copyright (c) 2007 Stefanos Apostolopoulos
* See license.txt for license info
*/
#endregion
namespace OpenTK.Input
{
public interface IKeyboard : IInputDevice
{
bool this[Keys k] { get; }
}
}