mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2026-04-06 08:09:22 +00:00
13 lines
330 B
C#
13 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; }
|
|
}
|
|
}
|