private bool CheckIfCardInPlayersHand(CardViewVariable cardViewVar)
 {
     return(playerSystem.currentPlayer.Get().hand.Contains(cardViewVar.Get().cardInstance));
 }
Beispiel #2
0
 public override CardView GetCurrentCard()
 {
     return(currentCardView.Get());
 }