class BlackjackJp::Card

Attributes

mark[R]
number[R]

Public Class Methods

new() click to toggle source
# File lib/blackjack_jp/card.rb, line 5
def initialize
  @mark = %w(♡ ♢ ♧ ♤)
  @number = %w(1 2 3 4 5 6 7 8 9 10 J Q K)
end