Opentk/Source/OpenTK/Input/IKeyboard.cs
the_fiddler 28b4630f04 IKeyboard interface. Updated Keyboard.cs and the examples to use the new interface.
Major additions to Windows.API: Implemented all functions and structures for Raw Input.
2007-07-26 22:56:55 +00:00

12 lines
207 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace OpenTK.Input
{
interface IKeyboard
{
bool this[Keys k] { get; set; }
void Poll();
}
}