diff options
Diffstat (limited to 'src/Ryujinx.HLE/Ui/Input/NpadButtonHandler.cs')
-rw-r--r-- | src/Ryujinx.HLE/Ui/Input/NpadButtonHandler.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/Ryujinx.HLE/Ui/Input/NpadButtonHandler.cs b/src/Ryujinx.HLE/Ui/Input/NpadButtonHandler.cs new file mode 100644 index 00000000..cd41f5c8 --- /dev/null +++ b/src/Ryujinx.HLE/Ui/Input/NpadButtonHandler.cs @@ -0,0 +1,6 @@ +using Ryujinx.HLE.HOS.Services.Hid.Types.SharedMemory.Npad; + +namespace Ryujinx.HLE.Ui.Input +{ + delegate void NpadButtonHandler(int npadIndex, NpadButton button); +} |