module ParaDice

A Container Class for the key parts of the library: Bag, Die, Cup, Readers

part of the paradice gem

Public Class Methods

numbered_die(max) click to toggle source

@param [Fixnum] max @ return [Die] die with sides 1..max

# File lib/para_dice.rb, line 6
def self.numbered_die(max)
  NumberedDie.get(max)
end