From 305a6a274996d7003f9356b3730d3b98fbc96347 Mon Sep 17 00:00:00 2001 From: the_fiddler Date: Sun, 28 Jun 2009 10:33:03 +0000 Subject: [PATCH] Marked KeyDownEvent and KeyUpEvent as obsolete. --- Source/OpenTK/Input/KeyboardDevice.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Source/OpenTK/Input/KeyboardDevice.cs b/Source/OpenTK/Input/KeyboardDevice.cs index b16413c6..fe0bd506 100644 --- a/Source/OpenTK/Input/KeyboardDevice.cs +++ b/Source/OpenTK/Input/KeyboardDevice.cs @@ -193,7 +193,9 @@ namespace OpenTK.Input #endregion } + [Obsolete] public delegate void KeyDownEvent(KeyboardDevice sender, Key key); + [Obsolete] public delegate void KeyUpEvent(KeyboardDevice sender, Key key); #region public enum Key : int