mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-06-12 07:19:14 +00:00
14 lines
330 B
C#
14 lines
330 B
C#
using CommunityToolkit.Mvvm.ComponentModel;
|
|
|
|
namespace Ryujinx.Ava.UI.ViewModels.Input
|
|
{
|
|
public partial class RumbleInputViewModel : BaseModel
|
|
{
|
|
[ObservableProperty]
|
|
public partial float StrongRumble { get; set; }
|
|
|
|
[ObservableProperty]
|
|
public partial float WeakRumble { get; set; }
|
|
}
|
|
}
|