mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 21:25:42 +12:00
35 lines
775 B
C#
35 lines
775 B
C#
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;
|
|
}
|
|
|
|
}
|
|
}
|