mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 05:05:40 +12:00
26 lines
581 B
C#
Executable file
26 lines
581 B
C#
Executable file
using Avalonia;
|
|
using Avalonia.Controls;
|
|
using Avalonia.Interactivity;
|
|
|
|
namespace MPN00BS
|
|
{
|
|
public partial class MpOrSp : Window
|
|
{
|
|
public MpOrSp()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
private void playSingleplayerClick(object sender, RoutedEventArgs e)
|
|
{
|
|
new LoadingWindow().Show();
|
|
this.Close();
|
|
}
|
|
|
|
private void playMultiplayerClick(object sender, RoutedEventArgs e)
|
|
{
|
|
new ServerSelection().Show();
|
|
this.Close();
|
|
|
|
}
|
|
}
|
|
}
|