public bool Equals(Card other) { if (other == null) { return(false); } return(NumCard.Equals(other.NumCard)); }
public NumCardDraw(GamePrototype gameParent, float result) : base(gameParent) { Card = new NumCard(result); }