ResetProperties() 공개 메소드

public ResetProperties ( bool notifyServer = true ) : void
notifyServer bool
리턴 void
예제 #1
0
 public void ResetCardProperties(Card card, Player player)
 {
     if (player == Player.LocalPlayer)
     {
         return;
     }
     card.ResetProperties(false);
 }
예제 #2
0
 public void ResetCardProperties(Card card, Player player)
 {
     WriteReplayAction(player.Id);
     if (IsLocalPlayer(player))
     {
         return;
     }
     card.ResetProperties(false);
 }
예제 #3
0
 public void ResetCardProperties(Card card, Player player)
 {
     if (player == Player.LocalPlayer) return;
     card.ResetProperties(false);
 }