コード例 #1
0
 /// <summary>
 /// Sorts the user’s hand.
 /// </summary>
 public static void SortUserHand()
 {
     if (!IsPlaying)
     {
         throw new Exception();
     }
     else
     {
         UserHand.SortHand();
     }
 }
コード例 #2
0
 /// <summary>
 /// Sorts the cards held by the User
 /// </summary>
 public static void SortUserHand()
 {
     UserHand.SortHand();
 }