Opentk/Source/OpenTK/Input/IKeyboard.cs

15 lines
272 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
{
bool this[Keys k] { get; set; }
//void Poll();
}
}