mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-22 02:31:12 +02:00
39 lines
843 B
C#
39 lines
843 B
C#
namespace Ryujinx.Ava.UI.ViewModels.Input
|
|
{
|
|
public class RumbleInputViewModel : BaseModel
|
|
{
|
|
private float _strongRumble;
|
|
public float StrongRumble
|
|
{
|
|
get => _strongRumble;
|
|
set
|
|
{
|
|
_strongRumble = value;
|
|
OnPropertyChanged();
|
|
}
|
|
}
|
|
|
|
private float _weakRumble;
|
|
public float WeakRumble
|
|
{
|
|
get => _weakRumble;
|
|
set
|
|
{
|
|
_weakRumble = value;
|
|
OnPropertyChanged();
|
|
}
|
|
}
|
|
|
|
private bool _enableHDRumble;
|
|
public bool EnableHDRumble
|
|
{
|
|
get => _enableHDRumble;
|
|
set
|
|
{
|
|
_enableHDRumble = value;
|
|
OnPropertyChanged();
|
|
}
|
|
}
|
|
}
|
|
}
|