ResetProperties() public method

public ResetProperties ( bool notifyServer = true ) : void
notifyServer bool
return void
Ejemplo n.º 1
0
 public void ResetCardProperties(Card card, Player player)
 {
     if (player == Player.LocalPlayer)
     {
         return;
     }
     card.ResetProperties(false);
 }
Ejemplo n.º 2
0
 public void ResetCardProperties(Card card, Player player)
 {
     WriteReplayAction(player.Id);
     if (IsLocalPlayer(player))
     {
         return;
     }
     card.ResetProperties(false);
 }
Ejemplo n.º 3
0
 public void ResetCardProperties(Card card, Player player)
 {
     if (player == Player.LocalPlayer) return;
     card.ResetProperties(false);
 }