mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-22 16:00:19 +00:00
8 lines
131 B
C#
8 lines
131 B
C#
|
namespace Ryujinx.HLE.Input
|
||
|
{
|
||
|
public struct HidKeyboard
|
||
|
{
|
||
|
public int Modifier;
|
||
|
public int[] Keys;
|
||
|
}
|
||
|
}
|