BalloonsPop.Validation.UserInputValidator.IsValidRowMove C# (CSharp) Method

IsValidRowMove() private static method

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.
return bool
        private static bool IsValidRowMove(char playerMove)
        {
            return (playerMove - 48) <= MaxRowInputValue;
        }