diff options
| author | Tilka <tilkax@gmail.com> | 2024-04-13 11:56:27 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-13 11:56:27 +0100 |
| commit | e62d8ecfa8c104f73c4feafc79f7ff64b4a4fd7b (patch) | |
| tree | b9046d845233c8503e6652241617460f5ad4b0ee /Source/Core/InputCommon/ControllerInterface/Android/Android.h | |
| parent | 1bfeeb8a631bf3ad3d357b3c920ca8e8a456344e (diff) | |
| parent | a9a9fdd9e903d47ec83aa7385e7be54871abbf0b (diff) | |
Merge pull request #12632 from jordan-woyak/input-backend-impls
Implement missing InputBackend classes.
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/Android/Android.h')
| -rw-r--r-- | Source/Core/InputCommon/ControllerInterface/Android/Android.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/Android/Android.h b/Source/Core/InputCommon/ControllerInterface/Android/Android.h index 8b8478d7ac..e63ac4f2da 100644 --- a/Source/Core/InputCommon/ControllerInterface/Android/Android.h +++ b/Source/Core/InputCommon/ControllerInterface/Android/Android.h @@ -3,11 +3,10 @@ #pragma once +#include "InputCommon/ControllerInterface/InputBackend.h" + namespace ciface::Android { -void Init(); -void Shutdown(); - -void PopulateDevices(); +std::unique_ptr<ciface::InputBackend> CreateInputBackend(ControllerInterface* controller_interface); } // namespace ciface::Android |
