mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-11 21:15:38 +00:00
Added common key aliases
This commit is contained in:
parent
3f81bc26d4
commit
4dceea9e21
|
@ -261,6 +261,8 @@ namespace OpenTK.Input
|
||||||
KeypadPlus = KeypadAdd,
|
KeypadPlus = KeypadAdd,
|
||||||
/// <summary>The keypad decimal key.</summary>
|
/// <summary>The keypad decimal key.</summary>
|
||||||
KeypadDecimal,
|
KeypadDecimal,
|
||||||
|
/// <summary>The keypad period key (equivalent to KeypadDecimal).</summary>
|
||||||
|
KeypadPeriod = KeypadDecimal,
|
||||||
/// <summary>The keypad enter key.</summary>
|
/// <summary>The keypad enter key.</summary>
|
||||||
KeypadEnter,
|
KeypadEnter,
|
||||||
|
|
||||||
|
@ -343,6 +345,8 @@ namespace OpenTK.Input
|
||||||
// Symbols
|
// Symbols
|
||||||
/// <summary>The tilde key.</summary>
|
/// <summary>The tilde key.</summary>
|
||||||
Tilde,
|
Tilde,
|
||||||
|
/// <summary>The grave key (equivaent to Tilde).</summary>
|
||||||
|
Grave = Tilde,
|
||||||
/// <summary>The minus key.</summary>
|
/// <summary>The minus key.</summary>
|
||||||
Minus,
|
Minus,
|
||||||
//Equal,
|
//Equal,
|
||||||
|
@ -368,6 +372,8 @@ namespace OpenTK.Input
|
||||||
Slash,
|
Slash,
|
||||||
/// <summary>The backslash key.</summary>
|
/// <summary>The backslash key.</summary>
|
||||||
BackSlash,
|
BackSlash,
|
||||||
|
/// <summary>The secondary backslash key.</summary>
|
||||||
|
NonUSBackSlash,
|
||||||
/// <summary>Indicates the last available keyboard key.</summary>
|
/// <summary>Indicates the last available keyboard key.</summary>
|
||||||
LastKey
|
LastKey
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue