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;
        }