CommonLibSSE (powerof3)
InputDevices.h
Go to the documentation of this file.
1 #pragma once
2 
3 namespace RE
4 {
5  struct INPUT_DEVICES
6  {
8  {
9  kNone = static_cast<std::underlying_type_t<INPUT_DEVICE>>(-1),
10  kKeyboard = 0,
11  kMouse,
12  kGamepad,
13  kVirtualKeyboard,
14 
15  kTotal
16  };
17  };
19 }
Definition: AbsorbEffect.h:6
Definition: InputDevices.h:6
INPUT_DEVICE
Definition: InputDevices.h:8