mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 12:29:00 +00:00
14 lines
363 B
C#
14 lines
363 B
C#
|
namespace Ryujinx.HLE.HOS.Applets
|
||
|
{
|
||
|
struct ControllerSupportArgPrivate
|
||
|
{
|
||
|
public uint PrivateSize;
|
||
|
public uint ArgSize;
|
||
|
public byte Flag0;
|
||
|
public byte Flag1;
|
||
|
public ControllerSupportMode Mode;
|
||
|
public byte ControllerSupportCaller;
|
||
|
public uint NpadStyleSet;
|
||
|
public uint NpadJoyHoldType;
|
||
|
}
|
||
|
}
|