This commit is contained in:
Digi
2025-03-05 21:58:03 +01:00
parent 9be4cba137
commit 9969d17bcc
18 changed files with 236 additions and 54 deletions

View File

@@ -10,7 +10,24 @@ namespace Program
{
public string Nev { get; set; }
public int Pontszam { get; set; }
public Minta Minta = new Minta();
}
class Minta
{
public bool Nagysor { get; set; }
public bool Kissor { get; set; }
public bool Poker { get; set; }
public bool Full { get; set; }
public bool Terc { get; set; }
public bool KetPar { get; set; }
public bool EgyPar { get; set; }
public bool AllTrue()
{
return Nagysor && Kissor && Poker && Full && Terc && KetPar && EgyPar;
}
}
class Kor
@@ -18,5 +35,8 @@ namespace Program
public Jatekos jatekos { get; set; }
public int[] dobasok { get; set; }
public int[] dobasokFull { get; set; }
public int[] dontesekFull { get; set; }
}
}