From 44a4573303917496ee9b4107fbe41a5cad142e2d Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Sat, 22 Oct 2022 16:13:35 -0500 Subject: ControllerInterface: Add InputBackend interface and SDL implementation. --- Source/Core/InputCommon/ControllerInterface/ControllerInterface.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'Source/Core/InputCommon/ControllerInterface/ControllerInterface.h') 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 m_aspect_ratio_adjustment = 1; std::atomic m_requested_mouse_centering = false; + + std::vector> m_input_backends; }; namespace ciface -- cgit v1.2.3