infra: Readjust namespaces/folders/projects/filenames back to Ryujinx

This commit is contained in:
KeatonTheBot
2025-06-22 21:30:22 -05:00
parent 2e0bb4ec56
commit 9955191651
240 changed files with 90 additions and 127 deletions
@@ -0,0 +1,27 @@
namespace Ryujinx.Ava.UI.ViewModels.Input
{
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();
}
}
}
}