class RubyHoldem::Round::Player
Attributes
current_bet_amount[RW]
hole_cards[RW]
Public Class Methods
new(player)
click to toggle source
Calls superclass method
# File lib/ruby_holdem/round/player.rb, line 6 def initialize(player) @hole_cards = [] @current_bet_amount = 0 super(player) end