public Card(Card c)
 {
     this.suit = c.suit; this.pip = c.pip; this.discarded = false;
 }
 public Card(Suit s, Pips p)
 {
     this.suit = s; this.pip = p; this.discarded = false;
 }