class VikingRoom7::Player

Attributes

hand[RW]
name[RW]

Public Class Methods

new(name) click to toggle source
# File lib/viking_room7/player.rb, line 5
def initialize(name)
  @name = name
  @hand = "r"
end

Public Instance Methods

throw() click to toggle source
# File lib/viking_room7/player.rb, line 10
def throw
end