ArmedCards.Entities.GameRound.ValidateCardPlayedCount C# (CSharp) Метод

ValidateCardPlayedCount() публичный Метод

Validate the right number of cards were played for the question
public ValidateCardPlayedCount ( Int32 cardsCount ) : System.Boolean
cardsCount System.Int32 The number of cards played
Результат System.Boolean
        public Boolean ValidateCardPlayedCount(Int32 cardsCount)
        {
            return ((Int32)Question.Instructions + 1) == cardsCount;
        }