0
0
Fork 0
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2024-10-21 09:21:40 +00:00
ryujinx-fork/Ryujinx/Ui/Input/ButtonAssigner.cs

17 lines
263 B
C#
Raw Normal View History

2021-02-20 23:22:55 +00:00
using Ryujinx.Common.Configuration.Hid;
namespace Ryujinx.Ui.Input
{
interface ButtonAssigner
{
void Init();
void ReadInput();
bool HasAnyButtonPressed();
bool ShouldCancel();
string GetPressedButton();
}
}