public Game() { deck = new Deck(); p1 = new Player(); p2 = new Player(); Console.WriteLine("Press space to PLAY."); deck.shuffle(); deal(); play(); }
public Player() { deck = new Deck(); }