mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-15 18:27:44 +02:00
15 lines
520 B
C#
15 lines
520 B
C#
namespace Ryujinx.Common.Configuration.Hid
|
|
{
|
|
public class RightJoyconCommonConfig<TButton>
|
|
{
|
|
public TButton ButtonPlus { get; set; }
|
|
public TButton ButtonR { get; set; }
|
|
public TButton ButtonZr { get; set; }
|
|
public TButton ButtonSl { get; set; }
|
|
public TButton ButtonSr { get; set; }
|
|
public TButton ButtonX { get; set; }
|
|
public TButton ButtonB { get; set; }
|
|
public TButton ButtonY { get; set; }
|
|
public TButton ButtonA { get; set; }
|
|
}
|
|
}
|