Exemplo n.º 1
0
 public void SetCardModel(CardModel newCard)
 {
     cardView   = GetComponent <CardInLaneView>(); //TODO must be a better option than this...
     card       = newCard;
     currHp     = newCard.health;
     timeToCast = newCard.timeToCast;
     cardView.CreateCardImage(card, owner, currHp); //TODO update the view with data from the card image?
 }
Exemplo n.º 2
0
 public void Start()
 {
     cardView = GetComponent <CardInLaneView>();
 }