Add project files.

This commit is contained in:
marthanelentianita
2025-05-09 19:00:21 +02:00
parent 41b0c42da9
commit ed07237c41
8 changed files with 230 additions and 0 deletions

19
OsztoProgram/Jatekos.cs Normal file
View File

@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OsztoProgram
{
internal class Jatekos
{
public Kartyalap[] Lapok;
public string Nev;
public Jatekos(string Nev)
{
this.Nev = Nev;
}
}
}