示例#1
0
 public void PlayCard(int index)
 {
     //Animate card to deck
     Hand[index].Affect(this, _playControllerInstance.GetOtherPlayer(this));
     _hand[index] = _cardControllerInstance.GetNewCard();
     Debug.Log(index);
     //Animate deck to card
 }