Ejemplo n.º 1
0
 public PlayerCounterSeparatedByGame(int playerCount)
 {
     this.playerCount = playerCount;
     this.counters    = new MapOfGame <PlayerCounter>();
     this.counters.InitAllEntries(delegate()
     {
         return(new PlayerCounter(playerCount));
     });
 }
Ejemplo n.º 2
0
 public PerTurnPlayerCountersSeparatedByGame(int playerCount)
 {
     this.counters    = new MapOfGame <PerTurnPlayerCounters>();
     this.playerCount = playerCount;
     this.counters.InitAllEntries(delegate()
     {
         return(new PerTurnPlayerCounters(playerCount));
     });
     this.aggregatedResult = null;
 }