コード例 #1
0
ファイル: Deck.cs プロジェクト: Jester1454/RTSGame
 public Card PutInHand()
 {
     if (Cards.Count > 0)
     {
         Card topCard = Cards[0];
         topCard.PutInHand();
         Cards.RemoveAt(0);
         return(topCard);
     }
     else
     {
         return(null);
     }
 }