DdsPlay.Model.Deck.Sort C# (CSharp) 메소드

Sort() 공개 메소드

Sorts the cards in the deck using the Game's suit comparer.
public Sort ( ) : void
리턴 void
        public void Sort()
        {
            Cards.Sort(Game.CardSuitComparer);

            if (SortChanged != null)
                SortChanged(this, null);
        }