Beispiel #1
0
 public Game(IEnumerable <IPlayer> players, IScorer scorer, uint rounds)
 {
     _Players = players;
     _Scorer  = scorer;
     // Initialise the players
     _Scorer.Start(_Players);
     _Rounds = rounds;
     _Round  = 0;
 }
Beispiel #2
0
 public void Setup()
 {
     _Scorer.Start(_Players);
 }