17 lines
328 B
C#
17 lines
328 B
C#
namespace launcher_client_avalonia.GUI;
|
|
|
|
public partial class MessageBox : Window
|
|
{
|
|
public MessageBox()
|
|
{
|
|
AvaloniaXamlLoader.Load(this);
|
|
#if DEBUG
|
|
this.AttachDevTools();
|
|
#endif
|
|
}
|
|
|
|
public static void Show(string title, string text)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
} |