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