mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-24 17:45:37 +00:00
Added GetState() method for primary keyboard.
This commit is contained in:
parent
28a3efa23c
commit
ec24c5022f
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue