static void Main(string[] args) { GameFlow.Start(human, cpu); while (isPlaying) { for (int i = 0; i < 52; i++) { GameFlow.Gameplay(human, cpu, round); round++; } round = 1; GameFlow.Ending(human, cpu); } ReadKey(); }
static public void Gameplay(Player hum, Player cpu, int round) { GameFlow.DrawCards(hum, cpu); Words.Template(hum, cpu, round); GameFlow.CheckWin(hum, cpu); }