/* * Card.java * * A blueprint class for objects that represent a single playing card * for the game Buno. */ public class Card { /* The smallest possible value that a Card can have. */ public static final int MIN_VALUE = 0; /* The possible colors that a Card can have. */ public static final String[] COLORS = {"blue", "green", "red", "yellow"}; /* Define the third class constant here. */ /* Put the rest of your class definition below. */ }