BalloonsPop.Validation.UserInputValidator.IsValidRowMove C# (CSharp) Метод

IsValidRowMove() приватный статический Метод

Returns true if the row coordinate of the player move falls within the allowed range.
private static IsValidRowMove ( char playerMove ) : bool
playerMove char The player move as string.
Результат bool
        private static bool IsValidRowMove(char playerMove)
        {
            return (playerMove - 48) <= MaxRowInputValue;
        }