diff options
author | Charles Lombardo <clombardo169@gmail.com> | 2024-01-18 09:16:58 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-18 09:16:58 -0500 |
commit | 3092855d5ae1724ccef4d267e74b79b7790814f0 (patch) | |
tree | d605942f87e77856c2a19c95c627ce178db6f706 /src/input_common/main.h | |
parent | c87b96435d7640a2de62a26ad773f806ab9800e2 (diff) | |
parent | 72f803c366f5406bc0098821f237c6185d1ed034 (diff) |
Merge pull request #12702 from german77/android-input
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(); |