2018-03-03 02:49:17 +01:00
|
|
|
//TODO: This is only used by Config, it doesn't belong to Core.
|
2018-06-11 02:46:42 +02:00
|
|
|
namespace Ryujinx.HLE.Input
|
2018-02-18 00:54:19 +01:00
|
|
|
{
|
|
|
|
public struct JoyConLeft
|
|
|
|
{
|
|
|
|
public int StickUp;
|
|
|
|
public int StickDown;
|
|
|
|
public int StickLeft;
|
|
|
|
public int StickRight;
|
|
|
|
public int StickButton;
|
|
|
|
public int DPadUp;
|
|
|
|
public int DPadDown;
|
|
|
|
public int DPadLeft;
|
|
|
|
public int DPadRight;
|
|
|
|
public int ButtonMinus;
|
|
|
|
public int ButtonL;
|
|
|
|
public int ButtonZL;
|
|
|
|
public int ButtonSL;
|
|
|
|
public int ButtonSR;
|
|
|
|
}
|
|
|
|
|
|
|
|
public struct JoyConRight
|
|
|
|
{
|
|
|
|
public int StickUp;
|
|
|
|
public int StickDown;
|
|
|
|
public int StickLeft;
|
|
|
|
public int StickRight;
|
|
|
|
public int StickButton;
|
|
|
|
public int ButtonA;
|
|
|
|
public int ButtonB;
|
|
|
|
public int ButtonX;
|
|
|
|
public int ButtonY;
|
|
|
|
public int ButtonPlus;
|
|
|
|
public int ButtonR;
|
|
|
|
public int ButtonZR;
|
|
|
|
public int ButtonSL;
|
|
|
|
public int ButtonSR;
|
|
|
|
}
|
|
|
|
|
|
|
|
public struct JoyCon
|
|
|
|
{
|
|
|
|
public JoyConLeft Left;
|
|
|
|
public JoyConRight Right;
|
|
|
|
}
|
|
|
|
}
|