diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2022-11-03 04:42:05 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-03 04:42:05 +0100 |
| commit | 1d07332657719a1a86290bf4e138ac7972ad2409 (patch) | |
| tree | f5470086989a70aa0d5f82905ceec2b489999ccd /Source/Core/InputCommon/ControllerInterface/ControllerInterface.h | |
| parent | 0210d115c22a1c5745c76eaefe38b5d0af3247f9 (diff) | |
| parent | 168a49c87ffbd05512c20db9735b3cb92afac93b (diff) | |
Merge pull request #11193 from jordan-woyak/ciface-input-backend-interface
ControllerInterface: Add InputBackend interface.
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/ControllerInterface.h')
| -rw-r--r-- | Source/Core/InputCommon/ControllerInterface/ControllerInterface.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h index 3a0276de41..59909aeec8 100644 --- a/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h +++ b/Source/Core/InputCommon/ControllerInterface/ControllerInterface.h @@ -12,6 +12,7 @@ #include "Common/Matrix.h" #include "Common/WindowSystemInfo.h" #include "InputCommon/ControllerInterface/CoreDevice.h" +#include "InputCommon/ControllerInterface/InputBackend.h" // enable disable sources #ifdef _WIN32 @@ -133,6 +134,8 @@ private: WindowSystemInfo m_wsi; std::atomic<float> m_aspect_ratio_adjustment = 1; std::atomic<bool> m_requested_mouse_centering = false; + + std::vector<std::unique_ptr<ciface::InputBackend>> m_input_backends; }; namespace ciface |
