mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-21 12:19:15 +12:00
Add Multiplatform HISP-NOOBS
This commit is contained in:
parent
b3df338715
commit
cdc136dcd4
24 changed files with 2140 additions and 668 deletions
29
HorseIsleServer/MPN00BS/MpOrSp.axaml.cs
Normal file
29
HorseIsleServer/MPN00BS/MpOrSp.axaml.cs
Normal file
|
@ -0,0 +1,29 @@
|
|||
using Avalonia;
|
||||
using Avalonia.Controls;
|
||||
using Avalonia.Interactivity;
|
||||
|
||||
namespace MPN00BS
|
||||
{
|
||||
public partial class MpOrSp : Window
|
||||
{
|
||||
public MpOrSp()
|
||||
{
|
||||
InitializeComponent();
|
||||
#if DEBUG
|
||||
this.AttachDevTools();
|
||||
#endif
|
||||
}
|
||||
private void playSingleplayer_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
new LoadingWindow().Show();
|
||||
this.Close();
|
||||
}
|
||||
|
||||
private void playMultiplayer_Click(object sender, RoutedEventArgs e)
|
||||
{
|
||||
new ServerSelection().Show();
|
||||
this.Close();
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue