Example #1
0
 public CardHolder(Player host, CardHolderTypes type, int maxSize)
 {
     this.host        = host;
     this.name        = type;
     this.maximumSize = maxSize;
     cards            = new List <AbstractCard>();
 }
Example #2
0
 public CardHolder(Player host, CardHolderTypes type)
 {
     this.host = host;
     this.name = type;
     cards     = new List <AbstractCard>();
 }
Example #3
0
 public CardHolder where (CardHolderTypes type)
 { return(holds[(int)type]); }