示例#1
0
 public Card(String cardName, String cardText, int cardValue, CardType cardType)
 {
     this.cardID    = Card.getNextCardId();
     this.cardName  = cardName;
     this.cardText  = cardText;
     this.cardType  = cardType;
     this.cardValue = cardValue;
     description    = description + " " + cardID + " " + cardName + " $" + cardValue;
     this.cardGuid  = generateGuid();
 }