mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-13 19:07:56 -05:00
input_common: Add android input engine
This commit is contained in:
@ -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();
|
||||
|
||||
|
Reference in New Issue
Block a user