From 4dceea9e2186e720f5184f107e297991b8883629 Mon Sep 17 00:00:00 2001 From: "Stefanos A." Date: Thu, 3 Oct 2013 20:52:02 +0200 Subject: [PATCH] Added common key aliases --- Source/OpenTK/Input/Key.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Source/OpenTK/Input/Key.cs b/Source/OpenTK/Input/Key.cs index 5933b483..3402c30f 100644 --- a/Source/OpenTK/Input/Key.cs +++ b/Source/OpenTK/Input/Key.cs @@ -261,6 +261,8 @@ namespace OpenTK.Input KeypadPlus = KeypadAdd, /// The keypad decimal key. KeypadDecimal, + /// The keypad period key (equivalent to KeypadDecimal). + KeypadPeriod = KeypadDecimal, /// The keypad enter key. KeypadEnter, @@ -343,6 +345,8 @@ namespace OpenTK.Input // Symbols /// The tilde key. Tilde, + /// The grave key (equivaent to Tilde). + Grave = Tilde, /// The minus key. Minus, //Equal, @@ -368,6 +372,8 @@ namespace OpenTK.Input Slash, /// The backslash key. BackSlash, + /// The secondary backslash key. + NonUSBackSlash, /// Indicates the last available keyboard key. LastKey }