Added GetState() method for primary keyboard.

This commit is contained in:
the_fiddler 2009-08-04 08:47:53 +00:00
parent 28a3efa23c
commit ec24c5022f

View file

@ -26,6 +26,15 @@ namespace OpenTK.Input
#region Public Members
/// <summary>
/// Retrieves the KeyboardState for the default keyboard device.
/// </summary>
/// <returns>A <see cref="OpenTK.Input.KeyboardState"/> structure containing the state of the keyboard device.</returns>
public static KeyboardState GetState()
{
throw new NotImplementedException();
}
/// <summary>
/// Retrieves the KeyboardState for the specified keyboard device.
/// </summary>