summaryrefslogtreecommitdiffstats
path: root/src/input_common/main.h
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2024-01-18 05:01:33 +0100
committerNarr the Reg <juangerman-13@hotmail.com>2024-01-18 05:47:56 +0100
commit72f803c366f5406bc0098821f237c6185d1ed034 (patch)
treeeb24af3dfdcb580a3236cd5f95cfdeb8eaa38252 /src/input_common/main.h
parentMerge pull request #12689 from liamwhite/remove-format (diff)
downloadyuzu-72f803c366f5406bc0098821f237c6185d1ed034.tar
yuzu-72f803c366f5406bc0098821f237c6185d1ed034.tar.gz
yuzu-72f803c366f5406bc0098821f237c6185d1ed034.tar.bz2
yuzu-72f803c366f5406bc0098821f237c6185d1ed034.tar.lz
yuzu-72f803c366f5406bc0098821f237c6185d1ed034.tar.xz
yuzu-72f803c366f5406bc0098821f237c6185d1ed034.tar.zst
yuzu-72f803c366f5406bc0098821f237c6185d1ed034.zip
Diffstat (limited to '')
-rw-r--r--src/input_common/main.h7
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();