Method: Cinch::Plugins::Dicebag::Bag#initialize
- Defined in:
- lib/cinch/plugins/dicebag/bag.rb
#initialize(dice_hash) ⇒ Bag
Create a new bag
12 13 14 15 16 17 |
# File 'lib/cinch/plugins/dicebag/bag.rb', line 12 def initialize(dice_hash) fail unless good_hash?(dice_hash) @dice = dice_hash @count = 0 @score = 0 end |