mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-15 17:45:26 +00:00
15 lines
512 B
C#
15 lines
512 B
C#
|
namespace Ryujinx.Common.Configuration.Hid
|
|||
|
{
|
|||
|
public class RightJoyconCommonConfig<Button>
|
|||
|
{
|
|||
|
public Button ButtonPlus { get; set; }
|
|||
|
public Button ButtonR { get; set; }
|
|||
|
public Button ButtonZr { get; set; }
|
|||
|
public Button ButtonSl { get; set; }
|
|||
|
public Button ButtonSr { get; set; }
|
|||
|
public Button ButtonX { get; set; }
|
|||
|
public Button ButtonB { get; set; }
|
|||
|
public Button ButtonY { get; set; }
|
|||
|
public Button ButtonA { get; set; }
|
|||
|
}
|
|||
|
}
|