Exemplo n.º 1
0
        public SpecialDice rollDice()
        {
            SpecialDice d = new SpecialDice(6);

            d.Roll();
            return(d);
        }
Exemplo n.º 2
0
        public SpecialDice rollDice(int faces)
        {
            SpecialDice d = new SpecialDice(faces);

            d.Roll();
            rolls.Add(d);
            return(d);
        }