14 lines
268 B
C#
14 lines
268 B
C#
namespace Launcher.Client.Avalonia.GUI;
|
|
|
|
public partial class MessageBox : Window
|
|
{
|
|
public MessageBox()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
public static void Show(string title, string text)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |