mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-12-18 13:37:00 +00:00
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.
12 lines
267 B
C#
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();
|
|
}
|
|
}
|
|
}
|