diff options
Diffstat (limited to 'src/input_common/main.h')
| -rw-r--r-- | src/input_common/main.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/input_common/main.h b/src/input_common/main.h index 18f44dcc3..dded3f1ef 100644 --- a/src/input_common/main.h +++ b/src/input_common/main.h | |||
| @@ -54,6 +54,8 @@ public: | |||
| 54 | 54 | ||
| 55 | class GCAnalogFactory; | 55 | class GCAnalogFactory; |
| 56 | class GCButtonFactory; | 56 | class GCButtonFactory; |
| 57 | class UDPMotionFactory; | ||
| 58 | class UDPTouchFactory; | ||
| 57 | class Keyboard; | 59 | class Keyboard; |
| 58 | class MotionEmu; | 60 | class MotionEmu; |
| 59 | 61 | ||
| @@ -123,6 +125,18 @@ public: | |||
| 123 | /// Retrieves the underlying GameCube button handler. | 125 | /// Retrieves the underlying GameCube button handler. |
| 124 | [[nodiscard]] const GCButtonFactory* GetGCButtons() const; | 126 | [[nodiscard]] const GCButtonFactory* GetGCButtons() const; |
| 125 | 127 | ||
| 128 | /// Retrieves the underlying udp motion handler. | ||
| 129 | [[nodiscard]] UDPMotionFactory* GetUDPMotions(); | ||
| 130 | |||
| 131 | /// Retrieves the underlying udp motion handler. | ||
| 132 | [[nodiscard]] const UDPMotionFactory* GetUDPMotions() const; | ||
| 133 | |||
| 134 | /// Retrieves the underlying udp touch handler. | ||
| 135 | [[nodiscard]] UDPTouchFactory* GetUDPTouch(); | ||
| 136 | |||
| 137 | /// Retrieves the underlying udp touch handler. | ||
| 138 | [[nodiscard]] const UDPTouchFactory* GetUDPTouch() const; | ||
| 139 | |||
| 126 | /// Reloads the input devices | 140 | /// Reloads the input devices |
| 127 | void ReloadInputDevices(); | 141 | void ReloadInputDevices(); |
| 128 | 142 | ||