mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 14:58:34 +00:00
16 lines
484 B
C#
16 lines
484 B
C#
|
namespace Ryujinx.Common.Configuration.Hid
|
|||
|
{
|
|||
|
public struct NpadControllerRight
|
|||
|
{
|
|||
|
public ControllerInputId Stick;
|
|||
|
public ControllerInputId StickButton;
|
|||
|
public ControllerInputId ButtonA;
|
|||
|
public ControllerInputId ButtonB;
|
|||
|
public ControllerInputId ButtonX;
|
|||
|
public ControllerInputId ButtonY;
|
|||
|
public ControllerInputId ButtonPlus;
|
|||
|
public ControllerInputId ButtonR;
|
|||
|
public ControllerInputId ButtonZr;
|
|||
|
}
|
|||
|
}
|