コード例 #1
0
ファイル: GameXima.cs プロジェクト: karlmet/MyCodeKata
 public GameXima(IXima source)
 {
     _XimaSource = source;
     _CurrentFrame = 0;
     _IsFirstThrow = true;
     _Scorer = new Scorer();
 }
コード例 #2
0
ファイル: Game.cs プロジェクト: karlmet/MyCodeKata
 public Game()
 {
     _CurrentFrame = 0;
     _IsFirstThrow = true;
     _Scorer = new Scorer();
 }