Method: CardType#step_in_hands
- Defined in:
- lib/manasimu/card.rb
#step_in_hands(turn, card) ⇒ Object
165 166 167 168 169 170 |
# File 'lib/manasimu/card.rb', line 165 def step_in_hands(turn, card) if card.can_play? @can_plays[turn] ||= 0 @can_plays[turn] += 1 end end |