Opentk/Source/OpenTK/Input/IKeyboard.cs
the_fiddler 43a37e3ac2 Fixed Raw Input keyboard registration under windows.
Fixed marshalling in GetRawInputData.
2007-07-27 01:37:12 +00:00

15 lines
272 B
C#

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