ButtonAssigner.cs 263 B

1234567891011121314151617
  1. using Ryujinx.Common.Configuration.Hid;
  2. namespace Ryujinx.Ui.Input
  3. {
  4. interface ButtonAssigner
  5. {
  6. void Init();
  7. void ReadInput();
  8. bool HasAnyButtonPressed();
  9. bool ShouldCancel();
  10. string GetPressedButton();
  11. }
  12. }