This commit is contained in:
abdelaziz
2026-03-30 07:49:37 +02:00
parent 9440351bc0
commit bc4118704e
21 changed files with 1785 additions and 124 deletions
+26
View File
@@ -0,0 +1,26 @@
using System.Windows;
namespace CheckersSpielBot
{
public partial class GameModeDialog : Window
{
public bool HumanGoesFirst { get; private set; } = true;
public GameModeDialog()
{
InitializeComponent();
}
private void HumanFirst_Click(object sender, RoutedEventArgs e)
{
HumanGoesFirst = true;
Close();
}
private void BotFirst_Click(object sender, RoutedEventArgs e)
{
HumanGoesFirst = false;
Close();
}
}
}