aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx/UI/ViewModels/RumbleInputViewModel.cs
blob: 49de19937d6a83e900853f639db416e50b623156 (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
{
    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();
            }
        }
    }
}