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

34
BlackJ/Card.cs Normal file
View File

@@ -0,0 +1,34 @@
using System;
using System.Collections.Generic;
using System.Diagnostics.Eventing.Reader;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using BlackJack;
namespace BlackJack
{
public class Card
{
public Suits Suit;
public int Number;
public Card(Suits suit, int number)
{
Suit = suit;
if (number < 10)
{
Number = number;
}
else
{
Number = 10;
}
}
}
}