예제 #1
0
파일: Frame.cs 프로젝트: skeiya/Bowling
 public static Frame Append(Frame old, Roll roll)
 {
     List<Roll> tmp = new List<Roll>(old._rolls);
     tmp.Add(roll);
     return new Frame(old.GetFrameIndex(), tmp);
 }
예제 #2
0
 public static bool IsLastFrame(Frame f)
 {
     return f.GetFrameIndex() == GetCount() - 1;
 }
예제 #3
0
 private static bool IsLastFrame(Frame f)
 {
     return f.GetFrameIndex() == FrameCountRule.GetCount() - 1;
 }