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
+9
View File
@@ -0,0 +1,9 @@
namespace CheckersSpielBot
{
public static class PlayerSession
{
public static int PlayerId { get; set; } = -1;
public static string Username { get; set; } = string.Empty;
public static int CurrentGameId { get; set; } = -1;
}
}