Ejemplo n.º 1
0
 // begin game - mix the stock and distribute the cards
 public void BeginGame(string fName, string sName)
 {
     pl1.Name = fName;
     pl2.Name = sName;
     stock    = new CardStock();
     stock.Mix();
     stock.distribute(pl1, pl2);
     Console.WriteLine(pl1.ToString());
     Console.WriteLine(pl2.ToString());
 }