rollDice method

int rollDice()

For human players only. Throws if called during a bot turn.

Implementation

int rollDice() {
  _assertHumanTurn('rollDice');
  return _inner.rollDice();
}