diff options
author | Narr the Reg <juangerman-13@hotmail.com> | 2024-01-17 22:01:33 -0600 |
---|---|---|
committer | Narr the Reg <juangerman-13@hotmail.com> | 2024-01-17 22:47:56 -0600 |
commit | 72f803c366f5406bc0098821f237c6185d1ed034 (patch) | |
tree | eb24af3dfdcb580a3236cd5f95cfdeb8eaa38252 /src/input_common/main.h | |
parent | 915efa42365d2734a7f34f9d51fbf187135989d7 (diff) |
input_common: Add android input engine
Diffstat (limited to 'src/input_common/main.h')
-rw-r--r-- | src/input_common/main.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/input_common/main.h b/src/input_common/main.h index d64a6cb4c..1d19019ee 100644 --- a/src/input_common/main.h +++ b/src/input_common/main.h @@ -29,6 +29,7 @@ enum Values : int; } namespace InputCommon { +class Android; class Camera; class Keyboard; class Mouse; @@ -103,6 +104,12 @@ public: /// Retrieves the underlying camera input device. [[nodiscard]] const Camera* GetCamera() const; + /// Retrieves the underlying android input device. + [[nodiscard]] Android* GetAndroid(); + + /// Retrieves the underlying android input device. + [[nodiscard]] const Android* GetAndroid() const; + /// Retrieves the underlying virtual amiibo input device. [[nodiscard]] VirtualAmiibo* GetVirtualAmiibo(); |