public void SetCardTypeInteractuableImage(CardCollectionSearchManager cardColelctionSearchManager, CARDTYPE cardType, string text)
 {
     this.cardColelctionSearchManager = cardColelctionSearchManager;
     this.cardType  = cardType;
     this.text.text = text;
 }
 public void SetCardPlayerDontOwnsInteractuableImage(CardCollectionSearchManager cardColelctionSearchManager, bool showOnlyOwned, string text)
 {
     this.cardColelctionSearchManager = cardColelctionSearchManager;
     this.showOnlyOwned = showOnlyOwned;
     this.text.text     = text;
 }
 public void SetCardActivationTypeInteractuableImage(CardCollectionSearchManager cardColelctionSearchManager, ACTIVATIONTYPE actType, string text)
 {
     this.cardColelctionSearchManager = cardColelctionSearchManager;
     this.actType   = actType;
     this.text.text = text;
 }
Esempio n. 4
0
 public void SetCardRarityInteractuableImage(CardCollectionSearchManager cardColelctionSearchManager, CardRarity rarity, string text)
 {
     this.cardColelctionSearchManager = cardColelctionSearchManager;
     this.rarity    = rarity;
     this.text.text = text;
 }