Esempio n. 1
0
 //Deals cards to the table
 static void DealToTable(int amountToPlace)
 {
     Card[] tempCards = deck.GetCards(amountToPlace);
     table.AddCardsToTable(tempCards);
 }