Class 2 Intermediate Java 30-IT-397  

Card.java

/*
 * Card.java
 *
 * Created on December 31, 2001, 12:12 AM
 */

package blackjack;

/**
 *
 * @author  default
 */
public class Card {

    public String suit;
    public String face;
    public int value;
 
    /** Creates a new instance of Card */
    Card(String suit, String face, int value) {
        this.suit = suit;
        this.face = face;
        this.value = value;
    }
 

}
 
Back

Created by:  Brandan Jones December 17, 2001