예제 #1
0
파일: Game.cs 프로젝트: davidbedok/oeprog1
 public Game(RandomWrapper random, int money)
 {
     this.player = new Player(money);
     this.dice = new Dice(random);
 }
예제 #2
0
파일: Dice.cs 프로젝트: davidbedok/oeprog1
 public Dice(RandomWrapper randomWrapper)
 {
     this.randomWrapper = randomWrapper;
 }