/*
 * Created on Nov 22, 2004
 *
 * Utilizes Java Power Tools (JPT)
 * http://www.ccs.neu.edu/jpt/
 * 
 */

/**
 *Authored by Brandon Schory
 *
 *With help, inspiration, and code from Mike Battista
 *
 */

import java.awt.*;

public class Card {

	public static void main(String[] args) {
	}
	String name;
	int value;
	Image image;
	
	/** Defines the Card objects used throughout the program*/
	public Card (String x, int v, Image img){
		name = x;
		value = v;
		image = img;
	}  
}

