Added GetState() method for primary keyboard.

This commit is contained in:
the_fiddler 2009-08-04 08:47:53 +00:00
parent a3f5cd8605
commit 0445ba2e00

View file

@ -26,6 +26,15 @@ namespace OpenTK.Input
#region Public Members #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> /// <summary>
/// Retrieves the KeyboardState for the specified keyboard device. /// Retrieves the KeyboardState for the specified keyboard device.
/// </summary> /// </summary>