From 572baf16be2bfde4b2d856a812a9f73d69358d30 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Fri, 4 Sep 2009 22:08:51 +0000 Subject: [PATCH] Removed [Obsolete] attribute from Joysticks, Keyboard and Mouse properties until the new input API is ready. --- Source/OpenTK/GameWindow.cs | 3 --- 1 file changed, 3 deletions(-) diff --git a/Source/OpenTK/GameWindow.cs b/Source/OpenTK/GameWindow.cs index f585565c..1f1dd59e 100644 --- a/Source/OpenTK/GameWindow.cs +++ b/Source/OpenTK/GameWindow.cs @@ -533,7 +533,6 @@ namespace OpenTK /// /// Gets a readonly IList containing all available OpenTK.Input.JoystickDevices. /// - [Obsolete] public IList Joysticks { get { return InputDriver.Joysticks; } @@ -546,7 +545,6 @@ namespace OpenTK /// /// Gets the primary Keyboard device, or null if no Keyboard exists. /// - [Obsolete] public KeyboardDevice Keyboard { get { return InputDriver.Keyboard.Count > 0 ? InputDriver.Keyboard[0] : null; } @@ -559,7 +557,6 @@ namespace OpenTK /// /// Gets the primary Mouse device, or null if no Mouse exists. /// - [Obsolete] public MouseDevice Mouse { get { return InputDriver.Mouse.Count > 0 ? InputDriver.Mouse[0] : null; }