From ec24c5022f22a330b19a787215b5298f3d81f241 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Tue, 4 Aug 2009 08:47:53 +0000 Subject: [PATCH] Added GetState() method for primary keyboard. --- Source/OpenTK/Input/Keyboard.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Source/OpenTK/Input/Keyboard.cs b/Source/OpenTK/Input/Keyboard.cs index 139637b8..630ebd4c 100644 --- a/Source/OpenTK/Input/Keyboard.cs +++ b/Source/OpenTK/Input/Keyboard.cs @@ -26,6 +26,15 @@ namespace OpenTK.Input #region Public Members + /// + /// Retrieves the KeyboardState for the default keyboard device. + /// + /// A structure containing the state of the keyboard device. + public static KeyboardState GetState() + { + throw new NotImplementedException(); + } + /// /// Retrieves the KeyboardState for the specified keyboard device. ///