CommonLibSSE NG
Loading...
Searching...
No Matches
InputDevices.h
Go to the documentation of this file.
1#pragma once
2
3namespace RE
4{
6 {
8 {
9 kNone = static_cast<std::underlying_type_t<INPUT_DEVICE>>(-1),
10 kKeyboard = 0,
11 kMouse,
12 kGamepad,
13 kVirtualKeyboard,
14#ifdef ENABLE_SKYRIM_VR
15 kVRRight = 5,
16 kVRLeft = 6,
17#endif
18
19 kTotal
20 };
21 static_assert(sizeof(INPUT_DEVICE) == 0x4);
22 };
24}
Definition AbsorbEffect.h:6
Definition InputDevices.h:6
INPUT_DEVICE
Definition InputDevices.h:8