public Advantage(IScoreContext context)
     : base(context)
 {
     _gameOver    = new GameWonInExtraTime(ScoreContext);
     _gameIsDeuce = new GameIsDeuce(ScoreContext);
 }
Esempio n. 2
0
 public NormalGame(IScoreContext context)
     : base(context)
 {
     _gameOver    = new GameWonInStandardMode(context);
     _gameIsDeuce = new GameIsDeuce(context);
 }