ThirdTry.ScoreBoard.FrameFactory C# (CSharp) Method

FrameFactory() private static method

private static FrameFactory ( int firstBall, int secondBall, int thirdBall ) : Frame
firstBall int
secondBall int
thirdBall int
return Frame
        private static Frame FrameFactory(int firstBall, int secondBall, int thirdBall)
        {
            var frame = new Frame(firstBall, secondBall);
            if (thirdBall != -1)
            {
                frame = new LastFrame(firstBall, secondBall, thirdBall);
            }
            return frame;
        }