aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx/UI/ViewModels/Input/RumbleInputViewModel.cs
blob: 8ad33cf4ce89faeb0c9f2a6842ec5524c0d154ac (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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();
            }
        }
    }
}