diff options
| author | Ac_K <Acoustik666@gmail.com> | 2022-12-06 16:32:14 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-06 15:32:14 +0000 |
| commit | 2372c194f10d8f9ef7ea2dc415aa1613fbfc078a (patch) | |
| tree | db1ab3951369aa538cefd397d7171af612a6bfe1 /Ryujinx.Ava/Input/AvaloniaMouse.cs | |
| parent | 40311310d1a6d2fde2ee9f04bfa1f21ced7cbee2 (diff) | |
ava: Cleanup Input classes (#4042)
* ava: Cleanup Input classes
This PR just cleanup all Input classes for consistencies.
* Addresses TSRBerry's feedback
Diffstat (limited to 'Ryujinx.Ava/Input/AvaloniaMouse.cs')
| -rw-r--r-- | Ryujinx.Ava/Input/AvaloniaMouse.cs | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/Ryujinx.Ava/Input/AvaloniaMouse.cs b/Ryujinx.Ava/Input/AvaloniaMouse.cs index a3ca2ff8..3a9c91c0 100644 --- a/Ryujinx.Ava/Input/AvaloniaMouse.cs +++ b/Ryujinx.Ava/Input/AvaloniaMouse.cs @@ -10,15 +10,12 @@ namespace Ryujinx.Ava.Input { private AvaloniaMouseDriver _driver; - public GamepadFeaturesFlag Features => throw new NotImplementedException(); - - public string Id => "0"; - + public string Id => "0"; public string Name => "AvaloniaMouse"; - public bool IsConnected => true; - - public bool[] Buttons => _driver.PressedButtons; + public bool IsConnected => true; + public GamepadFeaturesFlag Features => throw new NotImplementedException(); + public bool[] Buttons => _driver.PressedButtons; public AvaloniaMouse(AvaloniaMouseDriver driver) { |
