dtlauncher/Launcher.Client.Avalonia/GUI/MessageBox.axaml.cs

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();
}
}