Exemplo n.º 1
0
 internal void Play(TCGCard c, Hex h)
 {
     nextCommand = new CardCommand(c, h);
     hand.Remove(c);
     graveyard.Add(c);
     DrawCards(1);
 }
Exemplo n.º 2
0
 public CardCommand(TCGCard c, Hex h)
 {
     this.c = c;
     this.h = h;
 }