Files
doom-dm/Engine/src/Input/KeyboardButtonCode.cs
2024-12-16 04:28:45 +03:00

54 lines
384 B
C#

namespace Engine.Input;
public enum KeyboardButtonCode
{
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,
Ctrl,
Alt,
Shift,
Up,
Down,
Left,
Right,
Escape,
Enter,
Space,
Tab,
Backspace,
Delete,
Insert,
Home,
End,
PageUp,
PageDown,
TotalCount = PageDown + 1
}