diff options
| author | 2021-06-27 14:02:38 -0500 | |
|---|---|---|
| committer | 2021-09-18 23:22:42 +0200 | |
| commit | e6c4bf52f0eb2c9c78e983ffbc667891463d3253 (patch) | |
| tree | d01a5189842a1c210b98588cb2b38ad89a11a322 /src/input_common/main.h | |
| parent | input_common/tas: overwrite file dialog (diff) | |
| download | yuzu-e6c4bf52f0eb2c9c78e983ffbc667891463d3253.tar.gz yuzu-e6c4bf52f0eb2c9c78e983ffbc667891463d3253.tar.xz yuzu-e6c4bf52f0eb2c9c78e983ffbc667891463d3253.zip | |
input_common/tas: Add swap controller
Diffstat (limited to 'src/input_common/main.h')
| -rw-r--r-- | src/input_common/main.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/input_common/main.h b/src/input_common/main.h index 1d06fc5f5..6390d3f09 100644 --- a/src/input_common/main.h +++ b/src/input_common/main.h | |||
| @@ -155,28 +155,28 @@ public: | |||
| 155 | /// Retrieves the underlying udp touch handler. | 155 | /// Retrieves the underlying udp touch handler. |
| 156 | [[nodiscard]] const UDPTouchFactory* GetUDPTouch() const; | 156 | [[nodiscard]] const UDPTouchFactory* GetUDPTouch() const; |
| 157 | 157 | ||
| 158 | /// Retrieves the underlying GameCube button handler. | 158 | /// Retrieves the underlying mouse button handler. |
| 159 | [[nodiscard]] MouseButtonFactory* GetMouseButtons(); | 159 | [[nodiscard]] MouseButtonFactory* GetMouseButtons(); |
| 160 | 160 | ||
| 161 | /// Retrieves the underlying GameCube button handler. | 161 | /// Retrieves the underlying mouse button handler. |
| 162 | [[nodiscard]] const MouseButtonFactory* GetMouseButtons() const; | 162 | [[nodiscard]] const MouseButtonFactory* GetMouseButtons() const; |
| 163 | 163 | ||
| 164 | /// Retrieves the underlying udp touch handler. | 164 | /// Retrieves the underlying mouse analog handler. |
| 165 | [[nodiscard]] MouseAnalogFactory* GetMouseAnalogs(); | 165 | [[nodiscard]] MouseAnalogFactory* GetMouseAnalogs(); |
| 166 | 166 | ||
| 167 | /// Retrieves the underlying udp touch handler. | 167 | /// Retrieves the underlying mouse analog handler. |
| 168 | [[nodiscard]] const MouseAnalogFactory* GetMouseAnalogs() const; | 168 | [[nodiscard]] const MouseAnalogFactory* GetMouseAnalogs() const; |
| 169 | 169 | ||
| 170 | /// Retrieves the underlying udp motion handler. | 170 | /// Retrieves the underlying mouse motion handler. |
| 171 | [[nodiscard]] MouseMotionFactory* GetMouseMotions(); | 171 | [[nodiscard]] MouseMotionFactory* GetMouseMotions(); |
| 172 | 172 | ||
| 173 | /// Retrieves the underlying udp motion handler. | 173 | /// Retrieves the underlying mouse motion handler. |
| 174 | [[nodiscard]] const MouseMotionFactory* GetMouseMotions() const; | 174 | [[nodiscard]] const MouseMotionFactory* GetMouseMotions() const; |
| 175 | 175 | ||
| 176 | /// Retrieves the underlying udp touch handler. | 176 | /// Retrieves the underlying mouse touch handler. |
| 177 | [[nodiscard]] MouseTouchFactory* GetMouseTouch(); | 177 | [[nodiscard]] MouseTouchFactory* GetMouseTouch(); |
| 178 | 178 | ||
| 179 | /// Retrieves the underlying udp touch handler. | 179 | /// Retrieves the underlying mouse touch handler. |
| 180 | [[nodiscard]] const MouseTouchFactory* GetMouseTouch() const; | 180 | [[nodiscard]] const MouseTouchFactory* GetMouseTouch() const; |
| 181 | 181 | ||
| 182 | /// Retrieves the underlying tas button handler. | 182 | /// Retrieves the underlying tas button handler. |
| @@ -185,10 +185,10 @@ public: | |||
| 185 | /// Retrieves the underlying tas button handler. | 185 | /// Retrieves the underlying tas button handler. |
| 186 | [[nodiscard]] const TasButtonFactory* GetTasButtons() const; | 186 | [[nodiscard]] const TasButtonFactory* GetTasButtons() const; |
| 187 | 187 | ||
| 188 | /// Retrieves the underlying tas touch handler. | 188 | /// Retrieves the underlying tas analogs handler. |
| 189 | [[nodiscard]] TasAnalogFactory* GetTasAnalogs(); | 189 | [[nodiscard]] TasAnalogFactory* GetTasAnalogs(); |
| 190 | 190 | ||
| 191 | /// Retrieves the underlying tas touch handler. | 191 | /// Retrieves the underlying tas analogs handler. |
| 192 | [[nodiscard]] const TasAnalogFactory* GetTasAnalogs() const; | 192 | [[nodiscard]] const TasAnalogFactory* GetTasAnalogs() const; |
| 193 | 193 | ||
| 194 | /// Reloads the input devices | 194 | /// Reloads the input devices |