FECipherVit.Region.GetReversedNum C# (CSharp) Method

GetReversedNum() public method

public GetReversedNum ( ) : int
return int
        public int GetReversedNum()
        {
            int count = 0;
            foreach (Card card in CardList)
            {
                if (!card.FrontShown)
                {
                    count++;
                }
            }
            return count;
        }