mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-25 07:09:55 -06:00
12 lines
276 B
C#
12 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;
|
|
}
|
|
}
|