oszto12B/Oszto/Pakli.cs
2023-09-12 12:52:15 +02:00

43 lines
1.0 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Oszto
{
class Pakli
{
public Kartyalap[] lapok;
public Pakli()
{
string[] szinek = {"pikk","kőr","káró","treff"};
string[] ertekek = {"2","3","4","5","6","7","8","9","10","J","Q","K","A"};
//lapok készítése
lapok = new Kartyalap[52];
int lix = 0;
foreach (var sz in szinek)
{
foreach (var e in ertekek)
{
Kartyalap lap = new Kartyalap();
lap.szin = sz;
lap.ertek = e;
lapok[lix] = lap;
lix++;
}
}
//Console.WriteLine(lapok[0]);
//Console.WriteLine(lapok[51]);
kever();
}
private void kever()
{
Random rd = new Random();
}
}
}