ryujinx/src/Ryujinx/UI/SetupWizard/Pages/SetupFirmwarePage.axaml.cs
GreemDev a934ffa0dc Bake setup step logic into the view models themselves instead of being in the setup wizard implementation
renamed view models to contexts (like TKMM), however the contexts here are actually of a unique base type; containing aforementioned setup step logic. if the return value is of an error state result, it will prompt a retry of the page.
2025-12-12 01:44:01 -06:00

12 lines
267 B
C#

using Ryujinx.Ava.UI.Controls;
namespace Ryujinx.Ava.UI.SetupWizard.Pages
{
public partial class SetupFirmwarePage : RyujinxControl<SetupFirmwarePageContext>
{
public SetupFirmwarePage()
{
InitializeComponent();
}
}
}