19 lines
445 B
C#
19 lines
445 B
C#
|
namespace Ryujinx.Configuration.Hid
|
|||
|
{
|
|||
|
public struct NpadKeyboardLeft
|
|||
|
{
|
|||
|
public Key StickUp;
|
|||
|
public Key StickDown;
|
|||
|
public Key StickLeft;
|
|||
|
public Key StickRight;
|
|||
|
public Key StickButton;
|
|||
|
public Key DPadUp;
|
|||
|
public Key DPadDown;
|
|||
|
public Key DPadLeft;
|
|||
|
public Key DPadRight;
|
|||
|
public Key ButtonMinus;
|
|||
|
public Key ButtonL;
|
|||
|
public Key ButtonZl;
|
|||
|
}
|
|||
|
}
|