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();
|
||
|
}
|
||
|
}
|