dtlauncher/launcher-client-avalonia/GUI/MessageBox.axaml.cs
2022-07-01 19:36:38 +03:00

17 lines
320 B
C#

namespace Launcher.Client.Avalonia.GUI;
public partial class MessageBox : Window
{
public MessageBox()
{
InitializeComponent();
#if DEBUG
this.AttachDevTools();
#endif
}
public static void Show(string title, string text)
{
throw new NotImplementedException();
}
}