Nerfed/Nerfed.Runtime/Input/Key.cs

127 lines
977 B
C#
Raw Normal View History

namespace Nerfed.Runtime;
public enum Key : int // must be int32 (see KeyboardState)
{
None,
Backspace,
Tab,
Enter,
CapsLock,
Escape,
Space,
PageUp,
PageDown,
End,
Home,
Left,
Up,
Right,
Down,
Select,
Execute,
PrintScreen,
Insert,
Delete,
Help,
D0,
D1,
D2,
D3,
D4,
D5,
D6,
D7,
D8,
D9,
A,
B,
C,
D,
E,
F,
G,
H,
I,
J,
K,
L,
M,
N,
O,
P,
Q,
R,
S,
T,
U,
V,
W,
X,
Y,
Z,
LeftSuper,
RightSuper,
Apps,
NumPad0,
NumPad1,
NumPad2,
NumPad3,
NumPad4,
NumPad5,
NumPad6,
NumPad7,
NumPad8,
NumPad9,
Multiply,
Add,
Separator,
Subtract,
Decimal,
Divide,
F1,
F2,
F3,
F4,
F5,
F6,
F7,
F8,
F9,
F10,
F11,
F12,
F13,
F14,
F15,
F16,
F17,
F18,
F19,
F20,
F21,
F22,
F23,
F24,
NumLock,
Scroll,
LeftShift,
RightShift,
LeftControl,
RightControl,
LeftAlt,
RightAlt,
Semicolon,
Equals,
Comma,
Minus,
Period,
Slash,
Tilde,
LeftBracket,
Backslash,
RightBracket,
Apostrophe,
Pause,
Count
}