mirror of
https://github.com/islehorse/HISP.git
synced 2025-05-24 12:06:25 +12:00
...
This commit is contained in:
parent
640c6d2c49
commit
db92718ffa
16 changed files with 685 additions and 150 deletions
HorseIsleServer/N00BS
35
HorseIsleServer/N00BS/MpOrSp.cs
Normal file
35
HorseIsleServer/N00BS/MpOrSp.cs
Normal file
|
@ -0,0 +1,35 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace HISP
|
||||
{
|
||||
public partial class MpOrSp : Form
|
||||
{
|
||||
public bool Mutliplayer = false;
|
||||
|
||||
public MpOrSp()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private void Singleplayer_Click(object sender, EventArgs e)
|
||||
{
|
||||
Mutliplayer = false;
|
||||
DialogResult = DialogResult.OK;
|
||||
}
|
||||
|
||||
private void Multiplayer_Click(object sender, EventArgs e)
|
||||
{
|
||||
Mutliplayer = true;
|
||||
DialogResult = DialogResult.OK;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue