mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2024-12-16 20:05:54 +01: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();
|
||
|
}
|
||
|
}
|