Example #1
0
 public Game(RandomWrapper random, int money)
 {
     this.player = new Player(money);
     this.dice = new Dice(random);
 }
Example #2
0
 public Dice(RandomWrapper randomWrapper)
 {
     this.randomWrapper = randomWrapper;
 }