Add project files.

This commit is contained in:
eritib08
2025-09-16 10:20:05 +02:00
parent 42e8b1fddf
commit 52576e3416
12 changed files with 640 additions and 0 deletions

18
BlackJ/Program.cs Normal file
View File

@@ -0,0 +1,18 @@
using BlackJack;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BlackJack
{
internal class Program
{
static void Main(string[] args)
{
Game game = new Game();
game.Initialize();
}
}
}