mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-08-30 07:25:05 +00:00
11 lines
276 B
C#
11 lines
276 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace Ryujinx.Ava.UI.ViewModels.Input
|
|
{
|
|
public partial class RumbleInputViewModel : BaseModel
|
|
{
|
|
[ObservableProperty] private float _strongRumble;
|
|
|
|
[ObservableProperty] private float _weakRumble;
|
|
}
|
|
}
|