Esempio n. 1
0
 public GameXima(IXima source)
 {
     _XimaSource = source;
     _CurrentFrame = 0;
     _IsFirstThrow = true;
     _Scorer = new Scorer();
 }
Esempio n. 2
0
 public void Setup()
 {
     ximaMock = Substitute.For<IXima>();
     game = new BowlingGame.GameXima(ximaMock);
 }