예제 #1
0
파일: Player.cs 프로젝트: Wirdo91/Fort-Cat
 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
 }