using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace BlackjackClasses { public class Game { public enum Gamer { House, Player } private readonly Player _house; private readonly Player _player; private Round _round; public Game() { _house = new Player(); _player = new Player(); _round = new Round(_house, _player); } public Game(Player player) { _house = new Player(); _player = player; _round = new Round(_house, _player); } public void StartNewRound() { _round.firstRound(); } public void StartNewRound(List houseHand, List playerHand) { _round.CheatRound(houseHand,playerHand); } public List getDeck() { return _round.Deck; } public void setHand(List hand, Gamer player) { _round.CheatHand(hand, player); } } }