Class: DiabloGame::Dice

Inherits:
Object
  • Object
show all
Defined in:
lib/diablo_game/dice.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#numberObject (readonly)

Returns the value of attribute number.



3
4
5
# File 'lib/diablo_game/dice.rb', line 3

def number
  @number
end

Instance Method Details

#rollObject



5
6
7
# File 'lib/diablo_game/dice.rb', line 5

def roll
  @number = rand(1..6)
end