示例#1
0
        public void RollStartingPlayer()
        {
            _dices.RollDifferentDices();

            if (_dices.GetDiceOne() > _dices.GetDiceTwo())
            {
                _player = StoneColor.White;
            }
            else
            {
                _player = StoneColor.Black;
            }
        }
示例#2
0
 public int GetDiceOne() => _dice.GetDiceOne();