951700fdd8
* Removed unused usings. * Added back using, now that it's used. * Removed extra whitespace.
20 lines
No EOL
521 B
C#
20 lines
No EOL
521 B
C#
using Avalonia.Controls;
|
|
using Ryujinx.Ava.Ui.Windows;
|
|
|
|
namespace Ryujinx.Ava.Ui.Controls
|
|
{
|
|
public partial class UpdateWaitWindow : StyleableWindow
|
|
{
|
|
public UpdateWaitWindow(string primaryText, string secondaryText) : this()
|
|
{
|
|
PrimaryText.Text = primaryText;
|
|
SecondaryText.Text = secondaryText;
|
|
WindowStartupLocation = WindowStartupLocation.CenterOwner;
|
|
}
|
|
|
|
public UpdateWaitWindow()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
} |