Пример #1
0
        /// <summary>
        /// Allows users to pass in a list of dice to roll,
        /// </summary>
        /// <param name="d"></param>
        /// <returns></returns>
        /// <remarks>Not implemented on the User Interface yet. </remarks>
        public Die RollDice(Die d)
        {
            IDiceRollerData diceRoller = new DiceRollerDataComponent.DiceRollerData();
            var             result     = diceRoller.RollDice(d);

            return(result);
        }
Пример #2
0
        /// <summary>
        /// Default method to roll two dice
        /// </summary>
        /// <param name="max">the number of sides a dice has or its maximum value</param>
        /// <returns></returns>
        public Die RollTwoDice(int max)
        {
            IDiceRollerData diceRoller = new DiceRollerDataComponent.DiceRollerData();

            Die result = diceRoller.RollTwoDice(max);

            return(result);
        }