Cards.java
unknown
plain_text
2 years ago
438 B
5
Indexable
import javax.swing.ImageIcon;
public class Cards{
//Declarations
String suit;
String rank;
int numberOfCards;
ImageIcon icon;
// Cards constructor
Cards(String suit, String rank, int numberOfCards, ImageIcon icon) {
this.suit = suit;
this.rank = rank;
this.numberOfCards = numberOfCards;
this.icon = icon;
}
// When card is used, decrease "numberOfDecks" by 1
public void useCard() {
this.numberOfCards--;
}
}
Editor is loading...
Leave a Comment