16 lines
487 B
C#
16 lines
487 B
C#
|
namespace Ryujinx.Common.Configuration.Hid
|
|||
|
{
|
|||
|
public struct NpadControllerLeft
|
|||
|
{
|
|||
|
public ControllerInputId Stick;
|
|||
|
public ControllerInputId StickButton;
|
|||
|
public ControllerInputId ButtonMinus;
|
|||
|
public ControllerInputId ButtonL;
|
|||
|
public ControllerInputId ButtonZl;
|
|||
|
public ControllerInputId DPadUp;
|
|||
|
public ControllerInputId DPadDown;
|
|||
|
public ControllerInputId DPadLeft;
|
|||
|
public ControllerInputId DPadRight;
|
|||
|
}
|
|||
|
}
|