public Card(SuitType t, int r, CardHandler c) { Suit = t; Rank = r; Type = c; attributes = null; Log = new UI.ActionLog(); }
public Card() { Suit = SuitType.None; Rank = 0; Type = null; RevealOnce = false; attributes = null; Log = new UI.ActionLog(); }
public Card(ICard c) { Suit = c.Suit; Rank = c.Rank; Type = c.Type; RevealOnce = false; Place = c.Place; Id = -1; Attributes = c.Attributes; Log = new UI.ActionLog(); }