Beispiel #1
0
        public int CalculateScores(string rolls)
        {
            Roll []  roll       = rollParser.ParseRoll(rolls);
            Frame [] frame      = frameParser.ParseFrame(roll);
            int      totalScore = score.CalculateScore(frame);

            return(totalScore);
        }