mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-12-25 02:45:45 +00:00
17 lines
263 B
C#
17 lines
263 B
C#
|
using Ryujinx.Common.Configuration.Hid;
|
||
|
|
||
|
namespace Ryujinx.Ui.Input
|
||
|
{
|
||
|
interface ButtonAssigner
|
||
|
{
|
||
|
void Init();
|
||
|
|
||
|
void ReadInput();
|
||
|
|
||
|
bool HasAnyButtonPressed();
|
||
|
|
||
|
bool ShouldCancel();
|
||
|
|
||
|
string GetPressedButton();
|
||
|
}
|
||
|
}
|