コード例 #1
0
ファイル: MainProgram.cs プロジェクト: Vanadyl/Shapiro-Poker
 //Deals cards to the table
 static void DealToTable(int amountToPlace)
 {
     Card[] tempCards = deck.GetCards(amountToPlace);
     table.AddCardsToTable(tempCards);
 }